From: Dave Rolsky <autarch@urth.org>
Date: Wed, 13 Apr 2011 19:11:46 +0000 (-0500)
Subject: Style tweaks
X-Git-Tag: v0.15~4
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8834a28e7b417b9a759785bb99be3e36fa197080;p=gitmo%2FMooseX-StrictConstructor.git

Style tweaks
---

diff --git a/t/basic.t b/t/basic.t
index 04046d1..2a11bfc 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -80,7 +80,8 @@ use Test::More;
     has 'size'  => ( is => 'rw', 'init_arg' => undef );
 }
 
-my @classes = qw( Standard Stricter Subclass StrictSubclass OtherStrictSubclass Tricky InitArg );
+my @classes
+    = qw( Standard Stricter Subclass StrictSubclass OtherStrictSubclass Tricky InitArg );
 
 with_immutable {
     is(
@@ -106,18 +107,20 @@ with_immutable {
     );
 
     is(
-        exception { StrictSubclass->new( thing => 1, size => 'large', ) }, undef,
-        'subclass that doesn\'t use strict constructor handles known attributes correctly'
+        exception { StrictSubclass->new( thing => 1, size => 'large', ) },
+        undef,
+        q{subclass that doesn't use strict constructor handles known attributes correctly}
     );
 
     like(
         exception { StrictSubclass->new( thing => 1, bad => 99 ) },
         qr/unknown attribute.+: bad/,
-        'subclass that doesn\'t use strict correctly recognizes bad attribute'
+        q{subclass that doesn't use strict correctly recognizes bad attribute}
     );
 
     is(
-        exception { OtherStrictSubclass->new( thing => 1, size => 'large', ) }, undef,
+        exception { OtherStrictSubclass->new( thing => 1, size => 'large', ) }
+        , undef,
         'strict subclass from parent that doesn\'t use strict constructor handles known attributes correctly'
     );