Skip Menu |

This queue is for tickets about the Apache2-Authen-OdinAuth CPAN distribution.

Report information
The Basics
Id: 102263
Status: open
Priority: 0/
Queue: Apache2-Authen-OdinAuth

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

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



Subject: t/pod-coverage.t fails
# Failed test 'Pod coverage on Apache2::Authen::OdinAuth' # at /opt/perl-5.21.9/lib/site_perl/5.21.9/Test/Pod/Coverage.pm line 133. # Apache2::Authen::OdinAuth: requiring 'Apache2::Authen::OdinAuth' failed # Looks like you failed 1 test of 2. t/pod-coverage.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/2 subtests t/pod.t ........... ok
On 2015-02-21 05:25:19, SREZIC wrote: Show quoted text
> # Failed test 'Pod coverage on Apache2::Authen::OdinAuth' > # at /opt/perl-5.21.9/lib/site_perl/5.21.9/Test/Pod/Coverage.pm line 133. > # Apache2::Authen::OdinAuth: requiring 'Apache2::Authen::OdinAuth' failed > # Looks like you failed 1 test of 2. > t/pod-coverage.t .. > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/2 subtests > t/pod.t ........... ok >
Please don't allow pod tests to run for normal user installs; they cause unexpected failures such as this one, that do not relate to anything to do with the code itself. Either move them to xt/, or guard them with: plan skip_all => 'these tests are for authors only' unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};