fix for ini subsections (RT #32726), use from_json for JSON v2.x, refactor test suite.
[p5sagit/Config-Any.git] / t / 10-branches.t
index adda42d..8368bcc 100644 (file)
@@ -1,22 +1,39 @@
-use Test::More tests => 9;
-use Config::Any;
+use strict;
+use warnings;
 
-ok( !Config::Any->load_files(), "load_files expects args" );
-ok( !Config::Any->load_stems(), "load_stems expects args" );
+use Test::More tests => 10;
+
+use_ok( 'Config::Any' );
 
 {
     my @warnings;
     local $SIG{ __WARN__ } = sub { push @warnings, @_ };
+
+    Config::Any->load_files();
+    like(
+        shift @warnings,
+        qr/^No files specified!/,
+        "load_files expects args"
+    );
+
     Config::Any->load_files( {} );
     like(
         shift @warnings,
-        qr/^no files specified/,
+        qr/^No files specified!/,
         "load_files expects files"
     );
+
+    Config::Any->load_stems();
+    like(
+        shift @warnings,
+        qr/^No stems specified!/,
+        "load_stems expects args"
+    );
+
     Config::Any->load_stems( {} );
     like(
         shift @warnings,
-        qr/^no stems specified/,
+        qr/^No stems specified!/,
         "load_stems expects stems"
     );
 }