Algorithm-EquivalenceSets
    
    
  
  
  
view release on metacpan or search on metacpan
t/00-compile.t view on Meta::CPAN
    my $found = $File::Find::name;
    $found =~ s{^lib/}{};
    $found =~ s{[/\\]}{::}g;
    $found =~ s/\.pm$//;
    # nothing to skip
    push @modules, $found;
  },
  'lib',
);
my @scripts = glob "bin/*";
plan tests => scalar(@modules) + scalar(@scripts);
{
    # fake home for cpan-testers
    # no fake requested ## local $ENV{HOME} = tempdir( CLEANUP => 1 );
    is( qx{ $^X -Ilib -e "use $_; print '$_ ok'" }, "$_ ok", "$_ loaded ok" )
        for sort @modules;
( run in 0.258 second using v1.01-cache-2.11-cpan-c333fce770f )