update changes file
[p5sagit/Config-Any.git] / t / 61-features.t
index 62bd59e..f8557ef 100644 (file)
@@ -17,7 +17,7 @@ eval { Config::Any::INI->load( $cfg_file ); };
 SKIP: {
     skip "File loading backend for INI not found", 14 if $@;
 
-    my $struct; # used to make sure parsing works for arrays and hashes
+    my $struct;    # used to make sure parsing works for arrays and hashes
 
     # force_plugins
     {
@@ -59,16 +59,17 @@ SKIP: {
             }
         );
 
-        ok( $result, 'load file with parser forced, flatten to hash' );
+        ok( $result,     'load file with parser forced, flatten to hash' );
         ok( ref $result, 'load_files hashref contains a ref' );
 
         my $ref = blessed $result ? reftype $result : ref $result;
         is( substr( $ref, 0, 4 ), 'HASH', 'hashref' );
 
-        is_deeply( $result, $struct, 'load_files return an hashref (flatten_to_hash)' );
+        is_deeply( $result, $struct,
+            'load_files return an hashref (flatten_to_hash)' );
     }
-     
-    # use_ext  
+
+    # use_ext
     {
         ok( my $result = Config::Any->load_files(
                 {   files         => [ $cfg_file ],