The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
package Test;
use Test::More;
BEGIN {
    use_ok('Adam');
    use_ok('Moses');
}

diag("Testing Adam $Adam::VERSION");
diag("Testing Moses $Moses::VERSION");

done_testing();