Subject: | Module::Relese fails on systems without Test::Pod::Coverage |
from t/pod_coverage.t:
"""
use Test::More tests => 1;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD" if $@;
"""
If T::P::Coverage isn't on the system the test tries to plan a test
twice, the correct way to do this is:
use Test::More;
eval "...";
if ($@) {
plan skip_all => ..
} else {
plan 1;
}