added is_supported() to see what plugins we can use
[p5sagit/Config-Any.git] / t / 62-multi.t
index b8b9d7e..6c9e1e9 100644 (file)
@@ -23,6 +23,11 @@ SKIP: {
     is( @results, 2, '2 documents' );
     is_deeply( \@results, \@expect, 'structures ok' );
 
-    my $return = Config::Any->load_files( { use_ext => 1, files => [ $file ] } );
-    is_deeply( $return, [ { $file => \@expect } ], 'config-any structures ok' );
+    my $return
+        = Config::Any->load_files( { use_ext => 1, files => [ $file ] } );
+    is_deeply(
+        $return,
+        [ { $file => \@expect } ],
+        'config-any structures ok'
+    );
 }