YAML-Diff
view release on metacpan or search on metacpan
t/000-compile-modules.t view on Meta::CPAN
# This test does a basic `use` check on all the code.
use Test::More;
use File::Find;
sub test {
s{^lib/(.*)\.pm$}{$1} or return;
s{/}{::}g;
use_ok $_;
}
find {
wanted => \&test,
no_chdir => 1,
}, 'lib';
done_testing;
( run in 0.772 second using v1.01-cache-2.11-cpan-88abd93f124 )