line endings, tabs, perltidy.
Brian Cassidy [Tue, 5 Aug 2008 15:34:19 +0000 (15:34 +0000)]
16 files changed:
Changes
t/50-general.t
t/51-ini.t
t/52-json.t
t/53-perl.t
t/54-xml.t
t/55-yaml.t
t/61-features.t
t/conf/conf.conf
t/conf/conf.foo
t/conf/conf.ini
t/conf/conf.json
t/conf/conf2.ini
t/invalid/conf.conf
t/invalid/conf.ini
t/invalid/conf.json

diff --git a/Changes b/Changes
index 3b96ddf..449b4b8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -50,7 +50,7 @@ Revision history for Config-Any
 0.05  Wed Feb 21 22:00:00 2007
     - added support for (requested by Evan Kaufman):
       + 'force_plugins => [ qw(Config::Any::Foo Config::Any::Blah) ]' parameter
-           to load_(files|stems)
+        to load_(files|stems)
       + $Config::Any::INI::MAP_SECTION_SPACE_TO_NESTED_KEY - boolean, defaulting
         to on, controlling whether to map spaces in INI section headings 
         to nested hashrefs
index e173624..59b3f35 100644 (file)
@@ -26,9 +26,9 @@ else {
 
 # test invalid config
 {
-    my $file   = 't/invalid/conf.conf';
+    my $file = 't/invalid/conf.conf';
     my $config = eval { Config::Any::General->load( $file ) };
 
     ok( !$config, 'config load failed' );
-    ok( $@, "error thrown ($@)" ); 
+    ok( $@, "error thrown ($@)" );
 }
index 6848004..eb8e788 100644 (file)
@@ -49,9 +49,9 @@ else {
 
 # test invalid config
 {
-    my $file   = 't/invalid/conf.ini';
+    my $file = 't/invalid/conf.ini';
     my $config = eval { Config::Any::INI->load( $file ) };
 
     ok( !$config, 'config load failed' );
-    ok( $@, "error thrown ($@)" ); 
+    ok( $@, "error thrown ($@)" );
 }
index 23eb920..0dd65f4 100644 (file)
@@ -19,9 +19,9 @@ else {
 
 # test invalid config
 {
-    my $file   = 't/invalid/conf.json';
+    my $file = 't/invalid/conf.json';
     my $config = eval { Config::Any::JSON->load( $file ) };
 
     ok( !$config, 'config load failed' );
-    ok( $@, "error thrown ($@)" ); 
+    ok( $@, "error thrown ($@)" );
 }
index b11a60c..35a5cf6 100644 (file)
@@ -18,9 +18,9 @@ use Config::Any::Perl;
 
 # test invalid config
 {
-    my $file   = 't/invalid/conf.pl';
+    my $file = 't/invalid/conf.pl';
     my $config = eval { Config::Any::Perl->load( $file ) };
 
     ok( !$config, 'config load failed' );
-    ok( $@, "error thrown ($@)" ); 
+    ok( $@, "error thrown ($@)" );
 }
index 02fd793..0f7514a 100644 (file)
@@ -19,9 +19,9 @@ else {
 
 # test invalid config
 {
-    my $file   = 't/invalid/conf.xml';
+    my $file = 't/invalid/conf.xml';
     my $config = eval { Config::Any::XML->load( $file ) };
 
     ok( !$config, 'config load failed' );
-    ok( $@, "error thrown ($@)" ); 
+    ok( $@, "error thrown ($@)" );
 }
index d042cc4..2eb8d4e 100644 (file)
@@ -19,9 +19,9 @@ else {
 
 # test invalid config
 {
-    my $file   = 't/invalid/conf.yml';
+    my $file = 't/invalid/conf.yml';
     my $config = eval { Config::Any::YAML->load( $file ) };
 
     ok( !$config, 'config load failed' );
-    ok( $@, "error thrown ($@)" ); 
+    ok( $@, "error thrown ($@)" );
 }
index 62bd59e..e754a56 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
     {
@@ -65,10 +65,11 @@ SKIP: {
         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 ],
index 055e7a8..30d1eff 100644 (file)
@@ -1,7 +1,7 @@
-name = TestApp\r
-<Component Controller::Foo>\r
-    foo bar\r
-</Component>\r
-<Model Model::Baz>\r
-    qux xyzzy\r
-</Model>\r
+name = TestApp
+<Component Controller::Foo>
+    foo bar
+</Component>
+<Model Model::Baz>
+    qux xyzzy
+</Model>
index a47b2d0..5300f60 100644 (file)
@@ -1,7 +1,7 @@
-name=TestApp\r
-    \r
-[Component Controller::Foo]\r
-foo=bar\r
-\r
-[Model Model::Baz]\r
-qux=xyzzy\r
+name=TestApp
+    
+[Component Controller::Foo]
+foo=bar
+
+[Model Model::Baz]
+qux=xyzzy
index a47b2d0..5300f60 100644 (file)
@@ -1,7 +1,7 @@
-name=TestApp\r
-    \r
-[Component Controller::Foo]\r
-foo=bar\r
-\r
-[Model Model::Baz]\r
-qux=xyzzy\r
+name=TestApp
+    
+[Component Controller::Foo]
+foo=bar
+
+[Model Model::Baz]
+qux=xyzzy
index 7f17fd3..404e449 100644 (file)
@@ -1,13 +1,13 @@
-{\r
-    "name": "TestApp",\r
-    "Component": {\r
-        "Controller::Foo": {\r
-            "foo": "bar"\r
-        }\r
-    },\r
-    "Model": {\r
-        "Model::Baz": {\r
-            "qux": "xyzzy"\r
-        }\r
-    }\r
-}\r
+{
+    "name": "TestApp",
+    "Component": {
+        "Controller::Foo": {
+            "foo": "bar"
+        }
+    },
+    "Model": {
+        "Model::Baz": {
+            "qux": "xyzzy"
+        }
+    }
+}
index 366619e..2f892de 100644 (file)
@@ -1,7 +1,7 @@
-name=TestApp\r
-    \r
-[Controller::Foo]\r
-foo=bar\r
-\r
-[Model::Baz]\r
-qux=xyzzy\r
+name=TestApp
+    
+[Controller::Foo]
+foo=bar
+
+[Model::Baz]
+qux=xyzzy
index f0f55b4..cd12cad 100644 (file)
@@ -1,7 +1,7 @@
-name = TestApp\r
-<Component Controller::Foo\r
-    foo bar\r
-</Component>\r
-<Model Model::Baz>\r
-    qux xyzzy\r
-</Model>\r
+name = TestApp
+<Component Controller::Foo
+    foo bar
+</Component>
+<Model Model::Baz>
+    qux xyzzy
+</Model>
index 3323d75..7bec378 100644 (file)
@@ -1,7 +1,7 @@
-name=TestApp\r
-    \r
-[Component Controller::Foo\r
-foo=bar\r
-\r
-[Model Model::Baz]\r
-qux=xyzzy\r
+name=TestApp
+    
+[Component Controller::Foo
+foo=bar
+
+[Model Model::Baz]
+qux=xyzzy
index eb6497c..84416ae 100644 (file)
@@ -1,13 +1,13 @@
-{\r
-    "name": "TestApp",\r
-    "Component": {\r
-        "Controller::Foo": {\r
-            "foo": "bar"\r
-        }\r
-    },\r
-    "Model": {\r
-        "Model::Baz": {\r
-            "qux": "xyzzy"\r
-        }\r
-    }\r
+{
+    "name": "TestApp",
+    "Component": {
+        "Controller::Foo": {
+            "foo": "bar"
+        }
+    },
+    "Model": {
+        "Model::Baz": {
+            "qux": "xyzzy"
+        }
+    }