#!perl -T
eval
{
Perl::Critic->
import
;
die
if
Perl::Critic->VERSION < 1.094;
Test::Perl::Critic->
import
(
-profile
=>
'xt/perlcriticrc'
,
);
};
Test::More::plan(
skip_all
=>
"Perl::Critic 1.094 and Test::Perl::Critic required "
.
"for testing PBP compliance"
)
if
$@;
all_critic_ok();