package
main;
use
strict;
use
warnings;
use
File::Spec;
use
Test::More 0.88;
BEGIN {
eval
{
PPI->VERSION( 1.215 );
1;
} or
do
{
"1..0 # skip PPI 1.215 or greater required to criticize code.\n"
;
exit
;
};
eval
{
# TODO package profile.
Test::Perl::Critic->
import
(
-profile
=> File::Spec->catfile(
qw{xt author perlcriticrc}
),
);
1;
} or
do
{
"1..0 # skip Test::Perl::Critic required to criticize code.\n"
;
exit
;
};
}
all_critic_ok();
1;
# ex: set textwidth=72 :