Module::Build::Pluggable::AuthorTests - Plugin to Module::Build to add author tests
SYNOPSIS
# Build.PL
use strict;
use warnings;
use Module::Build::Pluggable qw[ AuthorTests ];
my $builder = Module::Build::Pluggable->new(
...
);
$builder->create_build_script();
DESCRIPTION
This Module::Build::Pluggable plugin adds an authortest action
which recursively runs tests in both the normal test directory
t, as well as in author-only test directories (by default xt ).
To specify alternate author-only test directories, pass the
"test_dirs" option when loading the module, e.g.