The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# $Id: 903-perlcritic.t,v 1.1 2009/02/23 07:36:17 aff Exp $

use strict;
use warnings;

use Test::More;

BEGIN {
  plan( skip_all => 'AUTHOR_TEST must be set for perlcritic test; skipping' )
    if ( !$ENV { 'AUTHOR_TEST' } );

  eval "use Test::Perl::Critic ( -severity => 4 )";
  plan(skip_all => 'Test::Perl::Critic required to criticise code') if ($@);
}

all_critic_ok();

__END__