Skip Menu |

This queue is for tickets about the Catalyst-Plugin-StackTrace CPAN distribution.

Report information
The Basics
Id: 45988
Status: open
Priority: 0/
Queue: Catalyst-Plugin-StackTrace

People
Owner: Nobody in particular
Requestors: chisel [...] chizography.net
Cc:
AdminCc:

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



Subject: Unescaped parens in test
I suspect that one of the tests doesn't match the anticipated string: qr{...()} vs qr{...\(\)} Patch attached.
Subject: stacktrace.patch
diff -Naur t/04trace.t t-patched/04trace.t --- t/04trace.t 2009-05-08 19:22:56.000000000 +0100 +++ t-patched/04trace.t 2009-05-08 19:23:33.000000000 +0100 @@ -24,7 +24,7 @@ like( $res->content, qr{Caught exception.+TestApp::Controller::Foo::three}, 'error ok' ); like( $res->content, qr{Stack Trace}, 'trace ok' ); like( $res->content, qr{<td>30</td>}, 'line number ok' ); - like( $res->content, qr{<strong class="line"> 30: three()}, 'context ok' ); + like( $res->content, qr{<strong class="line"> 30: three\(\);}, 'context ok' ); } TestApp->config->{stacktrace}{enable} = 0;
This is now fixed.