Skip Menu |

This queue is for tickets about the Messaging-Message CPAN distribution.

Report information
The Basics
Id: 131350
Status: new
Priority: 0/
Queue: Messaging-Message

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

Bug Information
Severity: (no value)
Broken in: 1.6.1
Fixed in: (no value)



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; ...