From: Jonathan Rockway Date: Fri, 27 Oct 2006 21:24:54 +0000 (+0000) Subject: make pod tests always run for devs. X-Git-Tag: 5.7099_04~298 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=29ec08de2b2d876d8c36fa6bb57b522523006516 make pod tests always run for devs. r5094@foo (orig r4725): marcus | 2006-07-20 03:49:27 -0500 --- diff --git a/t/02pod.t b/t/02pod.t index 1647794..8182004 100644 --- 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(); diff --git a/t/03podcoverage.t b/t/03podcoverage.t index d91be5e..6e5a25f 100644 --- a/t/03podcoverage.t +++ b/t/03podcoverage.t @@ -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();