The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl
############ STANDARD Perl::Critic TEST - DO NOT EDIT ##################
use strict;
use warnings;
use File::Spec::Functions;
use FindBin;
use Test::More;
unless ($ENV{PERL_CRITIC_TESTS} || $ENV{PERL_AUTHOR} || $ENV{THIS_IS_MARKF_YOU_BETCHA}) {
    Test::More::plan(
        skip_all => "Test::Perl::Critic tests not enabled (set PERL_CRITIC_TESTS or PERL_AUTHOR env var)"
    );
}
unless (require Test::Perl::Critic) {
    Test::More::plan(
        skip_all => "Test::Perl::Critic required for complaining compliance"
    );
}
Test::Perl::Critic->import( -profile => catfile( $FindBin::Bin, "perlcriticrc" ) );
Test::Perl::Critic::all_critic_ok();