The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More;
use File::Find;
use strict;

my @modules;
find( sub { push @modules, $File::Find::name if /^[A-Z].*\.pm$/ }, 'blib' );
    
plan tests => scalar @modules;
use_ok( $_ ) for map { s!/!::!g;s/\.pm$//;s/^blib::lib:://; $_ } sort @modules;

diag("Tested Acme::MetaSyntactic $Acme::MetaSyntactic::VERSION, Perl $], $^X" );