projects
/
gitmo/MooseX-StrictConstructor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Redid this as (mostly) roles which are applied at runtime to the meta
[gitmo/MooseX-StrictConstructor.git]
/
t
/
perlcritic.t
1
use strict;
2
use warnings;
3
4
use Test::More;
5
6
7
plan skip_all => 'This test is only run for the module author'
8
unless -d '.svn' || $ENV{IS_MAINTAINER};
9
10
eval 'use Test::Perl::Critic ( -severity => 4 )';
11
plan skip_all => 'Test::Perl::Critic required for criticizing' if $@;
12
13
all_critic_ok();