1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#!/usr/bin/perl
use strict;
use warnings;
use lib 't/lib';
use lib '../t/lib';
BEGIN {
use Test::More;
eval "use YAML::XS()";
if($@) {
eval "use YAML::Syck ()";
if($@) {
eval "use YAML ()";
if($@) {
plan skip_all => "YAML::XS or YAML or YAML::Syck required for this test";
}
}
}
plan tests => 5;
use_ok('MXSimpleConfigTest');
}
# Can it load a multiple YAML files with options
{
my $test_yaml; # generic filehandle
open $test_yaml, '>', 'test.yaml' or die "Cannot create test.yaml: $!";
print {$test_yaml} "direct_attr: 123\ninherited_ro_attr: asdf\n";
close $test_yaml or die "Cannot close test.yaml: $!";
open $test_yaml, '>', 'test2.yaml' or die "Cannot create test2.yaml: $!";
print {$test_yaml} "req_attr: foo\n";
close $test_yaml or die "Cannot close test.yaml: $!";
my $foo = eval {
MXSimpleConfigTest->new_with_config(
configfile => [ 'test.yaml', 'test2.yaml' ]
);
};
ok(!$@, 'Did not die with two YAML config files')
or diag $@;
is($foo->req_attr, 'foo', 'req_attr works');
is($foo->direct_attr, 123, 'direct_attr works');
is($foo->inherited_ro_attr, 'asdf', 'inherited_ro_attr works');
}
END {
unlink('test.yaml');
unlink('test2.yaml');
}
|