public
Description: Create, manipulate and save text mode images
Homepage: http://search.cpan.org/dist/Image-TextMode/
Clone URL: git://github.com/bricas/image-textmode.git
image-textmode / xt / author / critic.t
100644 16 lines (12 sloc) 0.332 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;
use File::Spec;
use Test::More;
 
eval { require Test::Perl::Critic; };
 
if ( $@ ) {
    my $msg = 'Test::Perl::Critic required to criticise code';
    plan( skip_all => $msg );
}
 
my $rcfile = File::Spec->catfile( 'xt', 'perlcriticrc' );
Test::Perl::Critic->import( -profile => $rcfile );
all_critic_ok();