A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

Jump to

Quick reference

Test that all your module dependencies are listed in the cpanfile

Put this at xt/author/cpanfile.t:
use Test::Most;
use Test::CPANfile;
use CPAN::Common::Index::Mirror;
cpanfile_has_all_used_modules(
parser => [':installed'],
index => CPAN::Common::Index::Mirror->new,
develop => 1,
perl_minimum_version => 1,
);
done_testing;
view raw cpanfile.t hosted with ❤ by GitHub
Thanks Anton & the team.