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
|
#!/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 => 6;
use_ok('MXSimpleConfigTest');
}
# Does it work with no configfile and not barf?
{
eval { MXSimpleConfigTest->new(req_attr => 'foo') };
ok(!$@, 'Did not die with no configfile specified')
or diag $@;
}
# Can it load a simple YAML file with the options
{
open(my $test_yaml, '>', 'test.yaml')
or die "Cannot create test.yaml: $!";
print $test_yaml "direct_attr: 123\ninherited_ro_attr: asdf\nreq_attr: foo\n";
close($test_yaml);
my $foo = eval {
MXSimpleConfigTest->new_with_config(configfile => 'test.yaml');
};
ok(!$@, 'Did not die with good YAML configfile')
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') }
|