Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the HTTP-SimpleLinkChecker CPAN distribution.

Report information
The Basics
Id: 111166
Status: resolved
Priority: 0/
Queue: HTTP-SimpleLinkChecker

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

Bug Information
Severity: (no value)
Broken in: 1.161
Fixed in: 1.162



Subject: t/prereq.t fails (1.161)
If Test::Prereq is installed: # Failed test 'Found some modules that didn't show up in PREREQ_PM or *_REQUIRES # ' # at /usr/perl5.16.3t/lib/site_perl/5.16.3/Test/Prereq.pm line 301. # HTTP::Request # HTTP::Status # LWP::UserAgent # Looks like you failed 1 test of 1. t/prereq.t ........ Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests
On 2016-01-13 11:35:57, SREZIC wrote: Show quoted text
> If Test::Prereq is installed: > > # Failed test 'Found some modules that didn't show up in PREREQ_PM > or *_REQUIRES > # ' > # at /usr/perl5.16.3t/lib/site_perl/5.16.3/Test/Prereq.pm line 301. > # HTTP::Request > # HTTP::Status > # LWP::UserAgent > # Looks like you failed 1 test of 1. > t/prereq.t ........ > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/1 subtests
Looks like this test should be made author-only, and then made to require Test::Prereq -- as there is nothing user-installation-specific to be tested here -- it's all on the packaging side. Either move it to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};