File: perlcritic.t

package info (click to toggle)
libmoosex-strictconstructor-perl 0.06-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 88 kB
  • ctags: 10
  • sloc: perl: 89; makefile: 38
file content (13 lines) | stat: -rw-r--r-- 292 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;

use Test::More;


plan skip_all => 'This test is only run for the module author'
    unless -d '.svn' || $ENV{IS_MAINTAINER};

eval 'use Test::Perl::Critic ( -severity => 4 )';
plan skip_all => 'Test::Perl::Critic required for criticizing' if $@;

all_critic_ok();