The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
require Test::More;

eval { require Test::Perl::Critic; };

if (1 || $@) {
    my $msg = 'Test::Perl::Critic required to criticise code';
    Test::More::plan(skip_all => $msg);
}

my $rcfile = File::Spec->catfile('t', 'perlcriticrc');

Test::Perl::Critic->import(-profile => $rcfile);

all_critic_ok();