From a3df31f5d703d9bb05e4f9bbede4627abc4f7a4f Mon Sep 17 00:00:00 2001 From: plobbes Date: Sat, 18 Oct 2008 17:33:49 +0000 Subject: - minor pod test cleanup --- t/pod-coverage.t | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 't/pod-coverage.t') diff --git a/t/pod-coverage.t b/t/pod-coverage.t index e2715fd..7e79bca 100644 --- a/t/pod-coverage.t +++ b/t/pod-coverage.t @@ -4,7 +4,9 @@ use strict; use warnings; use Test::More; -eval "use Test::Pod::Coverage 1.00"; -plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" - if $@; +plan skip_all => 'Set RELEASE_TESTING=1 to run this test' + if not $ENV{RELEASE_TESTING}; +eval 'use Test::Pod::Coverage'; +plan skip_all => 'Needs Test::Pod::Coverage' + if $@; all_pod_coverage_ok(); -- cgit v1.2.1