Algorithm-C3

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN


Source code for a work means the preferred form of the work for making
modifications to it.  For an executable file, complete source code means
all the source code for all modules it contains; but, as a special
exception, it need not include source code for modules which are standard
libraries that accompany the operating system on which the executable
file runs, or for standard header files or definitions files that
accompany that operating system.

  4. You may not copy, modify, sublicense, distribute or transfer the
Program except as expressly provided under this General Public License.
Any attempt otherwise to copy, modify, sublicense, distribute or transfer
the Program is void, and will automatically terminate your rights to use
the Program under this License.  However, parties who have received
copies, or rights to use copies, from you under this General Public
License will not have their licenses terminated so long as such parties
remain in full compliance.

  5. By copying, distributing or modifying the Program (or any work based
on the Program) you indicate your acceptance of this license to do so,
and all its terms and conditions.

MANIFEST  view on Meta::CPAN

MANIFEST			This list of files
t/001_merge.t
t/002_merge.t
t/003_merge.t
t/004_merge.t
t/005_order_disagreement.t
t/006_complex_merge.t
t/007_cached_merge.t
t/008_cached_merge_unordered.t
t/009_dbic_merge.t
t/010_complex_merge_classless.t
t/011_infinite_loop.t
xt/pod.t
xt/pod_coverage.t
META.yml                                 Module YAML meta-data (added by MakeMaker)
META.json                                Module JSON meta-data (added by MakeMaker)
README                                   README file (added by Distar)
LICENSE                                  LICENSE file (added by Distar)

t/011_infinite_loop.t  view on Meta::CPAN

use warnings;

use Test::More;
use Algorithm::C3;

plan skip_all => "Your system has no SIGALRM" if !exists $SIG{ALRM};
plan tests => 8;

=pod

These are like the 010_complex_merge_classless test,
but an infinite loop has been made in the heirarchy,
to test that we can fail cleanly instead of going
into an infinite loop

=cut

my @loopies = (
    { #1
        k => [qw(j i)],
        j => [qw(f)],



( run in 1.680 second using v1.01-cache-2.11-cpan-acf6aa7dc9e )