added is_supported() to see what plugins we can use
[p5sagit/Config-Any.git] / t / 10-branches.t
index b70d726..24c6209 100644 (file)
@@ -6,7 +6,7 @@ use_ok( 'Config::Any' );
     my @warnings;
     local $SIG{ __WARN__ } = sub { push @warnings, @_ };
 
-    Config::Any->load_files( );
+    Config::Any->load_files();
     like(
         shift @warnings,
         qr/^No files specified!/,
@@ -20,7 +20,7 @@ use_ok( 'Config::Any' );
         "load_files expects files"
     );
 
-    Config::Any->load_stems( );
+    Config::Any->load_stems();
     like(
         shift @warnings,
         qr/^No stems specified!/,