make pod tests always run for devs.
Jonathan Rockway [Fri, 27 Oct 2006 21:24:54 +0000 (21:24 +0000)]
r5094@foo (orig r4725):  marcus | 2006-07-20 03:49:27 -0500

t/02pod.t
t/03podcoverage.t

index 1647794..8182004 100644 (file)
--- a/t/02pod.t
+++ b/t/02pod.t
@@ -2,6 +2,6 @@ use Test::More;
 
 eval "use Test::Pod 1.14";
 plan skip_all => 'Test::Pod 1.14 required' if $@;
-plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -f 'MANIFEST.SKIP';
 
 all_pod_files_ok();
index d91be5e..6e5a25f 100644 (file)
@@ -2,6 +2,6 @@ use Test::More;
 
 eval "use Test::Pod::Coverage 1.04";
 plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
-plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -f 'MANIFEST.SKIP';
 
 all_pod_coverage_ok();