Test-t
view release on metacpan or search on metacpan
lib/Test/t.pm view on Meta::CPAN
require File::Spec;
BEGIN {
@ISA = qw/ Test::Builder::Module /;
}
@EXPORT = @Test::Most::EXPORT;
sub import {
strict->import;
warnings->import;
my $no_plan = 1;
m/^(?:no_plan|defer_plan|tests|skip_all)$/ and undef $no_plan for @_;
splice @_, 1, 1, ( 'no_plan' ) if $no_plan;
goto &Test::Most::import; # Let the good Test::Most do the magic
}
( run in 0.359 second using v1.01-cache-2.11-cpan-299005ec8e3 )