The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789101112131415 #!perl -wuse strict;use warnings;use Test::DescribeMe qw(author);use Test::Most;eval 'use Test::NoPlan qw / all_plans_ok /';if($@) { plan(skip_all => 'Test::NoPlan required for test verification');} else { all_plans_ok();}
#!perl -w
use
strict;
warnings;
Test::DescribeMe
qw(author)
;
Test::Most;
eval
'use Test::NoPlan qw / all_plans_ok /'
if
($@) {
plan(
skip_all
=>
'Test::NoPlan required for test verification'
);
}
else
{
all_plans_ok();