Reduce noise when running tests if Test::Kwalitee isn't installed.
Tim Bunce [Mon, 9 Mar 2009 21:40:30 +0000 (21:40 +0000)]
t/04kwalitee.t

index 46c5119..d5fecbd 100644 (file)
@@ -2,6 +2,7 @@ use Test::More;
 
 eval { require Test::Kwalitee; die "Not maintainer" unless -f 'MANIFEST.SKIP' };
 if($@) {
+    $@ =~ s/ \(\@INC contains.*//; # reduce the noise
     plan( skip_all => $@ );
 }
 Test::Kwalitee->import();