The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
use if $ENV {AUTHOR_TESTING}, 'Test::Warnings' ;
do {
sub foo { }
before foo => sub {
};
after foo => sub {
};
around foo => sub {
};
};
pass( "loaded correctly" );
done_testing;
|