diff options
Diffstat (limited to 't/pod.t')
-rw-r--r-- | t/pod.t | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -4,6 +4,9 @@ use strict; use warnings; use Test::More; -eval "use Test::Pod 1.00"; -plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; +plan skip_all => 'Set RELEASE_TESTING=1 to run this test' + if not $ENV{RELEASE_TESTING}; +eval "use Test::Pod"; +plan skip_all => 'Needs Test::Pod' + if $@; all_pod_files_ok(); |