revert change to extensions() as we really want *all* extensions. fix 10-branches... v0.16
Brian Cassidy [Mon, 17 Nov 2008 14:22:16 +0000 (14:22 +0000)]
lib/Config/Any.pm
t/10-branches.t
t/supported/conf.pl [new file with mode: 0644]

index 16dcd1b..cd00963 100644 (file)
@@ -281,7 +281,7 @@ parameter to those methods.
 sub extensions {
     my $class = shift;
     my @ext
-        = map { $_->extensions } grep { $_->is_supported } $class->plugins;
+        = map { $_->extensions } $class->plugins;
     return wantarray ? @ext : \@ext;
 }
 
index 4ffdff5..f82303b 100644 (file)
@@ -1,6 +1,7 @@
 use strict;
 use warnings;
 
+# use Test::Without::Module qw(YAML YAML::Syck Config::General XML::Simple JSON JSON::Syck Config::Tiny );
 use Test::More tests => 10;
 
 use_ok( 'Config::Any' );
@@ -38,8 +39,7 @@ use_ok( 'Config::Any' );
     );
 }
 
-# can only be sure that perl files will load
-my @files = ( 't/conf/conf.pl' );
+my @files = glob( "t/supported/conf.*" );
 ok( Config::Any->load_files( { files => \@files, use_ext => 0 } ),
     "use_ext 0 works" );
 
@@ -62,6 +62,6 @@ eval {
 };
 ok( $@, "filter breaks" );
 
-my @stems = qw(t/conf/conf);
+my @stems = qw(t/supported/conf);
 ok( Config::Any->load_stems( { stems => \@stems, use_ext => 1 } ),
     "load_stems with stems works" );
diff --git a/t/supported/conf.pl b/t/supported/conf.pl
new file mode 100644 (file)
index 0000000..be11d59
--- /dev/null
@@ -0,0 +1,4 @@
+{   name      => 'TestApp',
+    Component => { 'Controller::Foo' => { foo => 'bar' } },
+    Model     => { 'Model::Baz' => { qux => 'xyzzy' } }
+}