X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F03podcoverage.t;h=61a207b2859a29522035ea6119e38576d0a26463;hb=3932d8818a3c5112315a8757b6db7a3678755f7e;hp=d91be5e5d1d4f8eced30b8ee7fd055905c7c97f5;hpb=5a8fd7e9d4cca2af0237e1659f061cc64618bfe6;p=catagits%2FCatalyst-Runtime.git diff --git a/t/03podcoverage.t b/t/03podcoverage.t index d91be5e..61a207b 100644 --- a/t/03podcoverage.t +++ b/t/03podcoverage.t @@ -1,7 +1,13 @@ use Test::More; +eval "use Pod::Coverage 0.19"; +plan skip_all => 'Pod::Coverage 0.19 required' if $@; 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} || -e 'inc/.author'; -all_pod_coverage_ok(); +all_pod_coverage_ok( + { + also_private => ['BUILD'] + } +);