Subject: | You tried to plan twice at t/4podcov.t |
The test suite fails on some of my systems, probably if Test::Pod::Coverage is not installed:
...
You tried to plan twice at t/4podcov.t line 9.
# Looks like your test exited with 2 before it could output anything.
t/4podcov.t .....
Dubious, test returned 2 (wstat 512, 0x200)
Failed 5/5 subtests
...
Probably may be fixed by rewriting the test script like this (untested):
...
use Test::More;
# Ensure a recent version of Test::Pod::Coverage
eval("use Test::Pod::Coverage 1.08");
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage" if $@;
plan tests => 5;
...