projects
/
gitmo/MooseX-Daemonize.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b3cd9b5
)
Fix perlcritic test so it doesn't bomb if Perl::Critic isn't installed
Ash Berlin [Sun, 11 Nov 2007 14:02:13 +0000 (14:02 +0000)]
t/perlcritic.t
patch
|
blob
|
blame
|
history
diff --git
a/t/perlcritic.t
b/t/perlcritic.t
index
00999d9
..
a136942
100644
(file)
--- a/
t/perlcritic.t
+++ b/
t/perlcritic.t
@@
-1,7
+1,7
@@
#!perl
use Test::More;
eval "require Test::Perl::Critic";
-if (! $@) {
+if ($@) {
Test::More::plan(
skip_all => "Test::Perl::Critic required for testing PBP compliance"
);