X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=share%2Ft%2F03podcoverage.t.tt;h=48668d81b5821d7345644dba644be0efdb10012d;hb=e83023afe35e61eabe6083318fe41ec5d572afb2;hp=37ab26edb7fcac13adb618572a315952fc7468bf;hpb=630702f27dbc5392bad17ecd7bd1f6e1fdf2d33c;p=catagits%2FCatalyst-Devel.git diff --git a/share/t/03podcoverage.t.tt b/share/t/03podcoverage.t.tt index 37ab26e..48668d8 100644 --- a/share/t/03podcoverage.t.tt +++ b/share/t/03podcoverage.t.tt @@ -3,9 +3,12 @@ use strict; use warnings; use Test::More; +plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; + 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}; + +eval "use Pod::Coverage 0.20"; +plan skip_all => 'Pod::Coverage 0.20 required' if $@; all_pod_coverage_ok(); -1;