The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This test does a basic `use` check on all the code.
use Test::More;

use File::Find;

sub test {
    -f and /\.pm$/ or return;
    s{^lib[/\\]}{};
    s{\.pm$}{};
    s{[/\\]}{::}g;
    use_ok $_;
}

find {
    wanted => \&test,
    no_chdir => 1,
}, 'lib';

done_testing;