Skip Menu |

This queue is for tickets about the Module-Release CPAN distribution.

Report information
The Basics
Id: 28790
Status: resolved
Priority: 0/
Queue: Module-Release

People
Owner: Nobody in particular
Requestors: avar [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: 1.16



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; }
Fixed in 1.17