From: Dave Rolsky Date: Wed, 13 Apr 2011 19:12:13 +0000 (-0500) Subject: more style cleanup X-Git-Tag: v0.15~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-StrictConstructor.git;a=commitdiff_plain;h=43ee1f5b5267d15fe25b4292f7a49aed8359eca4 more style cleanup --- diff --git a/t/basic.t b/t/basic.t index 2a11bfc..f69201f 100644 --- a/t/basic.t +++ b/t/basic.t @@ -119,15 +119,15 @@ with_immutable { ); is( - exception { OtherStrictSubclass->new( thing => 1, size => 'large', ) } - , undef, - 'strict subclass from parent that doesn\'t use strict constructor handles known attributes correctly' + exception { OtherStrictSubclass->new( thing => 1, size => 'large', ) }, + undef, + q{strict subclass from parent that doesn't use strict constructor handles known attributes correctly} ); like( exception { OtherStrictSubclass->new( thing => 1, bad => 99 ) }, qr/unknown attribute.+: bad/, - 'strict subclass from parent that doesn\'t use strict correctly recognizes bad attribute' + q{strict subclass from parent that doesn't use strict correctly recognizes bad attribute} ); is(