Do not rerun PP tests twice if the envvar is set
Peter Rabbitson [Thu, 22 Dec 2011 09:29:40 +0000 (10:29 +0100)]
t/10-pure-perl.t

index d77551e..0ba946b 100644 (file)
@@ -2,6 +2,9 @@ use strict;
 use warnings;
 use Test::More;
 
+plan skip_all => "PP tests already executed"
+  if $ENV{NAMESPACE_CLEAN_USE_PP};
+
 eval { require B::Hooks::EndOfScope }
   or plan skip_all => "PP tests already executed";