Last active
August 29, 2015 14:04
-
-
Save jonasbn/5d3655411464f6749481 to your computer and use it in GitHub Desktop.
Perl::Critic tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Courtesy of Jeffrey Ryan Thalhammer | |
# http://search.cpan.org/~thaljef/Test-Perl-Critic/lib/Test/Perl/Critic.pm | |
use strict; | |
use warnings; | |
use File::Spec; | |
use Test::More; | |
use English qw(-no_match_vars); | |
if ( not $ENV{TEST_CRITIC} ) { | |
my $msg = 'Author test. Set $ENV{TEST_CRITIC} to a true value to run.'; | |
plan( skip_all => $msg ); | |
} | |
eval { require Test::Perl::Critic; }; | |
if ( $EVAL_ERROR ) { | |
my $msg = 'Test::Perl::Critic required to criticise code'; | |
plan( skip_all => $msg ); | |
} | |
my $rcfile = File::Spec->catfile( 't', 'perlcriticrc' ); | |
Test::Perl::Critic->import( -profile => $rcfile ); | |
all_critic_ok(); | |
__END__ | |
=pod | |
=head1 NAME | |
critic.t - a unit test from Test::Perl::Critic | |
=head1 DESCRIPTION | |
This test checks your code against Perl::Critic, which is a implementation of | |
a subset of the Perl Best Practices. | |
It's severity can be controlled using the severity parameter in the use | |
statement. 1 being the lowest and 5 being the highests. | |
Setting the severity lower, indicates level of strictness | |
Over the following range: | |
gentle, stern, harsh, cruel, brutal | |
So gentle would only catch severity 5 issues. | |
Since this tests tests all packages in your distribution, perlcritic | |
commandline tool can be used in addition. | |
L<perlcritic> | |
=cut |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment