Skip Menu |

This queue is for tickets about the Text-Template CPAN distribution.

Report information
The Basics
Id: 23620
Status: resolved
Priority: 0/
Queue: Text-Template

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

Bug Information
Severity: (no value)
Broken in: 1.44
Fixed in: 1.45



Subject: [PATCH] t/09-error.t fails on bleadperl
When testing Text::Template with bleadperl, t/09_error.t fails a test. The following patch fixes the test and it passes with 5.8.8 and bleadperl. --- t/09-error.t.old 2006-11-25 20:32:20.000000000 -0600 +++ t/09-error.t 2006-11-25 20:31:15.000000000 -0600 @@ -40,7 +40,7 @@ eval { Text::Template->new(TYPE => 'wlunch', SOURCE => 'fish food'); }; -if ($@ =~ /^\QIllegal value \`WLUNCH\' for TYPE parameter/) { +if ($@ =~ /^\QIllegal value `WLUNCH' for TYPE parameter/) { print "ok $n\n"; } else { print STDERR $@;
I looked too late into RT so developed the same patch independently and uploaded it to my CPAN directory as ANDK/patches/Text-Template-1.44-ANDK-01.patch.gz