Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / t / 00-testcritic.t
blob4c7f44132abb73142abe394079a5f66c407c3ebc
1 #!/usr/bin/env perl
3 # This script can be used to run perlcritic on perl files in koha
4 # The script is purely optional requiring Test::Perl::Critic to be installed
5 # and the environment variable TEST_QA to be set
7 use Modern::Perl;
8 use Test::More;
9 use English qw(-no_match_vars);
11 if ( not $ENV{TEST_QA} ) {
12 my $msg = 'Author test. Set $ENV{TEST_QA} to a true value to run';
13 plan( skip_all => $msg );
16 eval { require Test::Perl::Critic; };
18 if ( $EVAL_ERROR ) {
19 my $msg = 'Test::Perl::Critic required to criticise code,';
20 plan( skip_all => $msg );
23 Test::Perl::Critic->import( -profile => '.perlcriticrc');
24 all_critic_ok('.');