DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 300_immutable / 009_buildargs.t
index 6c1ca33..1df3fca 100644 (file)
@@ -10,7 +10,7 @@ use Test::More tests => 14;
     use Moose;
 
     has bar => ( is => "rw" );
-    has baz => ( is => "rw" );    
+    has baz => ( is => "rw" );
 
     sub BUILDARGS {
         my ( $self, @args ) = @_;
@@ -24,7 +24,7 @@ use Test::More tests => 14;
     use Moose;
 
     extends qw(Foo);
-    
+
     __PACKAGE__->meta->make_immutable;
 }
 
@@ -34,14 +34,14 @@ foreach my $class qw(Foo Bar) {
     is( $class->new( 37 )->bar, 37, "single arg" );
     {
         my $o = $class->new(bar => 42, baz => 47);
-        is($o->bar, 42, '... got the right bar');
-        is($o->baz, 47, '... got the right bar');
+        is($o->bar, 42, 'got the right bar');
+        is($o->baz, 47, 'got the right bar');
     }
     {
         my $o = $class->new(42, baz => 47);
-        is($o->bar, 42, '... got the right bar');
-        is($o->baz, 47, '... got the right bar');
-    }    
+        is($o->bar, 42, 'got the right bar');
+        is($o->baz, 47, 'got the right bar');
+    }
 }