remove trailing whitespace
[gitmo/Moose.git] / t / 040_type_constraints / 005_util_type_coercion.t
index 64e4684..86a158c 100644 (file)
@@ -13,24 +13,24 @@ BEGIN {
 {
     package HTTPHeader;
     use Moose;
-    
+
     has 'array' => (is => 'ro');
-    has 'hash'  => (is => 'ro');    
+    has 'hash'  => (is => 'ro');
 }
 
-subtype Header => 
-    => as Object 
+subtype Header =>
+    => as Object
     => where { $_->isa('HTTPHeader') };
-    
-coerce Header 
-    => from ArrayRef 
+
+coerce Header
+    => from ArrayRef
         => via { HTTPHeader->new(array => $_[0]) }
-    => from HashRef 
+    => from HashRef
         => via { HTTPHeader->new(hash => $_[0]) };
 
-        
-Moose::Util::TypeConstraints->export_type_constraints_as_functions();        
-        
+
+Moose::Util::TypeConstraints->export_type_constraints_as_functions();
+
 my $header = HTTPHeader->new();
 isa_ok($header, 'HTTPHeader');
 
@@ -42,9 +42,9 @@ my $anon_type = subtype Object => where { $_->isa('HTTPHeader') };
 
 lives_ok {
     coerce $anon_type
-        => from ArrayRef 
+        => from ArrayRef
             => via { HTTPHeader->new(array => $_[0]) }
-        => from HashRef 
+        => from HashRef
             => via { HTTPHeader->new(hash => $_[0]) };
 } 'coercion of anonymous subtype succeeds';
 
@@ -54,35 +54,35 @@ foreach my $coercion (
     ) {
 
     isa_ok($coercion, 'Moose::Meta::TypeCoercion');
-    
+
     {
         my $coerced = $coercion->coerce([ 1, 2, 3 ]);
         isa_ok($coerced, 'HTTPHeader');
-    
+
         is_deeply(
             $coerced->array(),
             [ 1, 2, 3 ],
             '... got the right array');
-        is($coerced->hash(), undef, '... nothing assigned to the hash');        
+        is($coerced->hash(), undef, '... nothing assigned to the hash');
     }
-    
+
     {
         my $coerced = $coercion->coerce({ one => 1, two => 2, three => 3 });
         isa_ok($coerced, 'HTTPHeader');
-        
+
         is_deeply(
             $coerced->hash(),
             { one => 1, two => 2, three => 3 },
             '... got the right hash');
-        is($coerced->array(), undef, '... nothing assigned to the array');        
+        is($coerced->array(), undef, '... nothing assigned to the array');
     }
-    
+
     {
         my $scalar_ref = \(my $var);
         my $coerced = $coercion->coerce($scalar_ref);
         is($coerced, $scalar_ref, '... got back what we put in');
     }
-    
+
     {
         my $coerced = $coercion->coerce("Foo");
         is($coerced, "Foo", '... got back what we put in');