Most Stackoverflow answers that I have found in regards to the Perl build process and unit testing and code coverage simply point me to CPAN for the documentation there. Th
In response to Kurt, I would propose this alternative to his BuiltTest.PL script.
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->resume (
properties => {
config_dir => '_build',
},
);
$build->dispatch('build');
$build->dispatch('test');
It reuses the database build by Build.PL (and thus assumes that already ran).