From: Jesse Luehrs Date: Fri, 3 Feb 2012 21:51:09 +0000 (-0600) Subject: make tests less dependent on the format of exceptions X-Git-Tag: 0.07~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FEval-Closure.git;a=commitdiff_plain;h=00e107ebb4f8360bf7a57743fbce8ff8d951d9b3 make tests less dependent on the format of exceptions --- diff --git a/t/description.t b/t/description.t index 15a2ce1..269b530 100644 --- a/t/description.t +++ b/t/description.t @@ -19,7 +19,7 @@ SOURCE like( exception { $code->() }, - qr/^foo at \(eval \d+\) line \d+\n/, + qr/^foo at \(eval \d+\) line \d+/, "no location info if context isn't passed" ); } @@ -32,7 +32,7 @@ SOURCE like( exception { $code->() }, - qr/^foo at accessor foo \(defined at Class\.pm line 282\) line 2\n/, + qr/^foo at accessor foo \(defined at Class\.pm line 282\) line 2/, "description is set" ); } @@ -46,7 +46,7 @@ SOURCE like( exception { $code->() }, - qr/^foo at accessor foo \(defined at Class\.pm line 282\) line 101\n/, + qr/^foo at accessor foo \(defined at Class\.pm line 282\) line 101/, "description is set" ); }