~ubuntu-branches/ubuntu/trusty/libtest-roo-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to xt/author/critic.t

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2014-01-14 19:25:11 UTC
  • Revision ID: package-import@ubuntu.com-20140114192511-9ycl4dc1zgamfnek
Tags: upstream-1.002
ImportĀ upstreamĀ versionĀ 1.002

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!perl
 
2
 
 
3
use strict;
 
4
use warnings;
 
5
 
 
6
use Test::More;
 
7
use English qw(-no_match_vars);
 
8
 
 
9
eval "use Test::Perl::Critic";
 
10
plan skip_all => 'Test::Perl::Critic required to criticise code' if $@;
 
11
Test::Perl::Critic->import( -profile => "perlcritic.rc" ) if -e "perlcritic.rc";
 
12
all_critic_ok();