X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=t%2F10-branches.t;h=eda0ae80c6c430d1420be0b769fe107b1789520b;hp=e74294bd7b2ababa067c871e133b481edd7f91e0;hb=HEAD;hpb=f0e3c2214342d0d8a8839009b8b9c7e6bfbc7ab2 diff --git a/t/10-branches.t b/t/10-branches.t index e74294b..eda0ae8 100644 --- a/t/10-branches.t +++ b/t/10-branches.t @@ -1,26 +1,75 @@ +use strict; +use warnings; +no warnings 'once'; + +# use Test::Without::Module qw(YAML YAML::Syck Config::General XML::Simple JSON JSON::Syck Config::Tiny ); use Test::More tests => 9; + use Config::Any; +use Config::Any::YAML; -ok ( ! Config::Any->load_files(), "load_files expects args" ); -ok ( ! Config::Any->load_stems(), "load_stems expects args" ); { my @warnings; - local $SIG{__WARN__} = sub { push @warnings, @_ }; - Config::Any->load_files({}); - like (shift @warnings, qr/^no files specified/, "load_files expects files"); - Config::Any->load_stems({}); - like (shift @warnings, qr/^no stems specified/, "load_stems expects stems"); + 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!/, + "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!/, + "load_stems expects stems" + ); +} + +my @files = glob( "t/supported/conf.*" ); +{ + require Config::Any::General; + local $SIG{ __WARN__ } = sub { } + if Config::Any::General->is_supported; + ok( Config::Any->load_files( { files => \@files, use_ext => 0 } ), + "use_ext 0 works" ); } -my @files = glob("t/conf/conf.*"); my $filter = sub { return }; -ok(Config::Any->load_files({files=>\@files, use_ext=>0}), "use_ext 0 works"); -ok(Config::Any->load_files({files=>\@files, use_ext=>1}), "use_ext 1 works"); +ok( Config::Any->load_files( { files => \@files, use_ext => 1 } ), + "use_ext 1 works" ); -ok(Config::Any->load_files({files=>\@files, use_ext=>1, filter=>\&$filter}), "filter works"); -eval {Config::Any->load_files({files=>\@files, use_ext=>1, filter=>sub{die}}) }; -ok($@, "filter breaks"); +ok( Config::Any->load_files( + { files => \@files, use_ext => 1, filter => \&$filter } + ), + "filter works" +); +eval { + Config::Any->load_files( + { files => \@files, + use_ext => 1, + filter => sub { die "reject" } + } + ); +}; +like $@, qr/reject/, "filter breaks"; -my @stems = qw(t/conf/conf); -ok(Config::Any->load_stems({stems=>\@stems, use_ext=>1}), "load_stems with stems works"); +my @stems = qw(t/supported/conf); +ok( Config::Any->load_stems( { stems => \@stems, use_ext => 1 } ), + "load_stems with stems works" );