Skip Menu |

This queue is for tickets about the NexposeSimpleXML-Parser CPAN distribution.

Report information
The Basics
Id: 116652
Status: open
Priority: 0/
Queue: NexposeSimpleXML-Parser

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

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



Subject: Core modules and tools no longer search "." for optional modules
Tests fail with perl 5.22.3-RC2 and perl 5.24.1-RC2, very probably because of an incompatible change regarding "." in @INC. The test output shows: Invalid CODE attribute: Tests at t/Test/Parser.pm line 111. See also https://rt.perl.org/Ticket/Display.html?id=128769
On Tue Aug 02 01:26:49 2016, SREZIC wrote: Show quoted text
> Tests fail with perl 5.22.3-RC2 and perl 5.24.1-RC2, very probably > because of an incompatible change regarding "." in @INC. > > The test output shows: > > Invalid CODE attribute: Tests at t/Test/Parser.pm line 111. > > See also https://rt.perl.org/Ticket/Display.html?id=128769
Patch.
Subject: open_f3cmor94.txt
diff -rup NexposeSimpleXML-Parser-0.04-0-orig/t/parser.t NexposeSimpleXML-Parser-0.04-0/t/parser.t --- NexposeSimpleXML-Parser-0.04-0-orig/t/parser.t 2010-08-02 12:18:48.000000000 -0700 +++ NexposeSimpleXML-Parser-0.04-0/t/parser.t 2016-08-07 11:20:14.000000000 -0700 @@ -1,5 +1,6 @@ #!/usr/bin/perl # $Id$ +use lib '.'; use t::Test::Parser; use strict;