File: critic.t

package info (click to toggle)
libfailures-perl 0.004-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 192 kB
  • sloc: perl: 298; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (227)
1
2
3
4
5
6
7
8
9
10
11
12
#!perl

use strict;
use warnings;

use Test::More;
use English qw(-no_match_vars);

eval "use Test::Perl::Critic";
plan skip_all => 'Test::Perl::Critic required to criticise code' if $@;
Test::Perl::Critic->import( -profile => "perlcritic.rc" ) if -e "perlcritic.rc";
all_critic_ok();