From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910 use strict;use warnings;use Test::More import => [ qw( plan ) ];BEGIN { plan skip_all => 'Not release testing context' unless $ENV{ RELEASE_TESTING } }use Test::Needs qw( Test::Perl::Critic );Test::Perl::Critic::all_critic_ok( 'lib', 't', 'maint' );
use
strict;
warnings;
Test::More
import
=> [
qw( plan )
];
BEGIN { plan
skip_all
=>
'Not release testing context'
unless
$ENV
{ RELEASE_TESTING } }
Test::Needs
qw( Test::Perl::Critic )
;
Test::Perl::Critic::all_critic_ok(
'lib'
,
't'
'maint'
);