refactor _load(). fix an issue with use_ext => 0. use_ext now on by default. throw...
[p5sagit/Config-Any.git] / t / 55-yaml.t
CommitLineData
f0e3c221 1use Test::More tests => 2;
2
3use Config::Any::YAML;
4
5my $config = eval { Config::Any::YAML->load( 't/conf/conf.yml' ) };
6
7SKIP: {
8 skip "Couldn't Load YAML plugin", 2 if $@;
9 ok( $config );
10 is( $config->{ name }, 'TestApp' );
11}