Skip Menu |

This queue is for tickets about the HTML-Element-Tiny CPAN distribution.

Report information
The Basics
Id: 109405
Status: open
Priority: 0/
Queue: HTML-Element-Tiny

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

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



Subject: t/minimum-perl.t fails
If Test::MinimumVersion is installed: ... # Failed test 'lib/HTML/Element/Tiny.pm' # at /opt/perl-5.18.2t/lib/site_perl/5.18.2/Test/MinimumVersion.pm line 122. # lib/HTML/Element/Tiny.pm requires 5.006 due to syntax # version markers for 5.006: # - _weaken # Failed test 'Makefile.PL' # at /opt/perl-5.18.2t/lib/site_perl/5.18.2/Test/MinimumVersion.pm line 122. # Makefile.PL requires 5.006 due to syntax # version markers for 5.006: # - _perl_5006_pragmas # Looks like you failed 2 tests of 11. t/minimum-perl.t .... Dubious, test returned 2 (wstat 512, 0x200) Failed 2/11 subtests ...
On 2015-11-22 07:06:10, SREZIC wrote: Show quoted text
> If Test::MinimumVersion is installed: > > ... > # Failed test 'lib/HTML/Element/Tiny.pm' > # at /opt/perl-5.18.2t/lib/site_perl/5.18.2/Test/MinimumVersion.pm > line 122. > # lib/HTML/Element/Tiny.pm requires 5.006 due to syntax > # version markers for 5.006: > # - _weaken > > # Failed test 'Makefile.PL' > # at /opt/perl-5.18.2t/lib/site_perl/5.18.2/Test/MinimumVersion.pm > line 122. > # Makefile.PL requires 5.006 due to syntax > # version markers for 5.006: > # - _perl_5006_pragmas > # Looks like you failed 2 tests of 11. > t/minimum-perl.t .... > Dubious, test returned 2 (wstat 512, 0x200) > Failed 2/11 subtests > ...
This is not an appropriate test to run for normal user installs, as future versions of Test::MinimumVersion and Perl::MinimumVersion may add additional checks that cause the installation to fail unnecessarily. Either move the test to xt/, or guard it with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};