The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

plan skip_all => 'Author test.  Set $ENV{ TEST_AUTHOR } to enable this test.' unless $ENV{ TEST_AUTHOR };

eval "use Test::Perl::Critic ( -severity => 1, -profile => 't/perlcriticrc' )";
plan skip_all => 'Test::Perl::Critic not installed.' if $@;

all_critic_ok();