Skip Menu |

This queue is for tickets about the Contextual-Return CPAN distribution.

Report information
The Basics
Id: 17891
Status: resolved
Priority: 0/
Queue: Contextual-Return

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

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



Subject: Bug in fail/fail_with tests on Win32
In fail.t this line: like $exception, qr/\Q$exception_pat\E at $file line $line/ => "Right message"; backslashes in $file causes pattern to not match. Escape should include file: like $exception, qr/\Q$exception_pat at $file\E line $line/ => "Right message"; Same thing in fail_with.t: like $exception, qr/\Q$exception_pat\E at $file line $line/ => "Right message"; should be: like $exception, qr/\Q$exception_pat at $file\E line $line\E/ => "Right message";