Algorithm-Networksort
view release on metacpan or search on metacpan
my $class = Module::Build->subclass(
class => "Module::Build::Custom",
code => <<'SUBCLASS' );
sub ACTION_test {
my $self = shift;
#
# Some test files take a long time to run. To save
# the testers some processing time, skip those tests
# by default (this is determined within the individual
# test files). Use the --Testlong option to set the
# AUTHOR_TESTING environment variable, which the
# longer-running test files will check for.
#
my %args = $self->args;
$ENV{AUTHOR_TESTING} = 1 if (exists $args{Testlong});
$self->SUPER::ACTION_test;
}
( run in 0.462 second using v1.01-cache-2.11-cpan-8d75d55dd25 )