X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F03podcoverage.t;h=dff7c5c2de5844cd4820c3e3a0419a3b4d0a4a33;hb=636c7d946d756a64fa6fc7ac2bc4e112f1131471;hp=d91be5e5d1d4f8eced30b8ee7fd055905c7c97f5;hpb=68ccb5e5aaaffd5b17d9dc4144dca51b1942a8f7;p=catagits%2FCatalyst-Devel.git diff --git a/t/03podcoverage.t b/t/03podcoverage.t index d91be5e..dff7c5c 100644 --- a/t/03podcoverage.t +++ b/t/03podcoverage.t @@ -2,6 +2,10 @@ use Test::More; eval "use Test::Pod::Coverage 1.04"; plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; + +eval "use Pod::Coverage 0.20"; +plan skip_all => 'Pod::Coverage 0.20 required' if $@; + plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; -all_pod_coverage_ok(); +all_pod_coverage_ok( { trustme => [ qr/^(?:BUILD|DEMOLISH)$/ ] } );