Revert "Whitespace trim tests", this was clearly retarded of
[gitmo/MooseX-Storage.git] / t / 070_basic_maybe.t
index 0c908ba..c154327 100644 (file)
@@ -37,7 +37,7 @@ BEGIN {
         object  => Foo->new( number => 2 ),
     );
     isa_ok( $foo, 'Foo' );
-
+    
     is_deeply(
         $foo->pack,
         {
@@ -48,10 +48,10 @@ BEGIN {
             float     => 10.5,
             array     => [ 1 .. 10 ],
             hash      => { map { $_ => undef } ( 1 .. 10 ) },
-            object    => {
-                            __CLASS__ => 'Foo',
-                            number    => 2
-                         },
+            object    => { 
+                            __CLASS__ => 'Foo',                
+                            number    => 2 
+                         },            
         },
         '... got the right frozen class'
     );
@@ -67,11 +67,11 @@ BEGIN {
             float     => 10.5,
             array     => [ 1 .. 10 ],
             hash      => { map { $_ => undef } ( 1 .. 10 ) },
-            object    => {
-                            __CLASS__ => 'Foo',
-                            number    => 2
-                         },
-        } 
+            object    => { 
+                            __CLASS__ => 'Foo',                
+                            number    => 2 
+                         },            
+        }        
     );
     isa_ok( $foo, 'Foo' );
 
@@ -101,25 +101,25 @@ BEGIN {
 
     use Scalar::Util 'looks_like_number';
 
-    with Storage;
-
-    subtype 'Natural'
+    with Storage;    
+    
+    subtype 'Natural' 
         => as 'Int'
         => where { $_ > 0 };
-    subtype 'HalfNum'
+        
+    subtype 'HalfNum' 
         => as 'Num'
-        => where { "$_" =~ /\.5$/ };
-
+        => where { "$_" =~ /\.5$/ };    
+    
     subtype 'FooString'
         => as 'Str'
         => where { lc($_) eq 'foo' };
-    subtype 'IntArray'
+        
+    subtype 'IntArray' 
         => as 'ArrayRef'
         => where { scalar grep { looks_like_number($_) } @{$_} };
 
-    subtype 'UndefHash'
+    subtype 'UndefHash' 
         => as 'HashRef'
         => where { scalar grep { !defined($_) } values %{$_} };
 
@@ -141,7 +141,7 @@ BEGIN {
         object => Foo->new( number => 2 ),
     );
     isa_ok( $foo, 'Foo' );
-
+    
     is_deeply(
         $foo->pack,
         {
@@ -151,10 +151,10 @@ BEGIN {
             float     => 10.5,
             array     => [ 1 .. 10 ],
             hash      => { map { $_ => undef } ( 1 .. 10 ) },
-            object    => {
-                            __CLASS__ => 'Foo',
-                            number    => 2
-                         },
+            object    => { 
+                            __CLASS__ => 'Foo',                
+                            number    => 2 
+                         },            
         },
         '... got the right frozen class'
     );
@@ -169,11 +169,11 @@ BEGIN {
             float     => 10.5,
             array     => [ 1 .. 10 ],
             hash      => { map { $_ => undef } ( 1 .. 10 ) },
-            object    => {
-                            __CLASS__ => 'Foo',
-                            number    => 2
-                         },
-        } 
+            object    => { 
+                            __CLASS__ => 'Foo',                
+                            number    => 2 
+                         },            
+        }        
     );
     isa_ok( $foo, 'Foo' );