BsDiPa
view release on metacpan or search on metacpan
#@ Automated test for S-bsdipa (make test).
#use Test::Simple tests => 1;
use Test2::API qw/context/;
our @EXPORT = qw/ok done_testing/;
sub ok($;$){
my ($bool, $name) = @_;
my $ctx = context();
$ctx->ok($bool, $name);
$ctx->release;
return $bool
}
sub done_testing{
my $ctx = context();
$ctx->done_testing;
$ctx->release
( run in 0.450 second using v1.01-cache-2.11-cpan-65fba6d93b7 )