require YAML::Syck 0.70 for multi-document loading
[p5sagit/Config-Any.git] / t / 52-json.t
CommitLineData
f0e3c221 1use Test::More tests => 2;
2
3use Config::Any::JSON;
4
5my $config = eval { Config::Any::JSON->load( 't/conf/conf.json' ) };
6
7SKIP: {
8 skip "Couldn't Load JSON plugin", 2 if $@;
9 ok( $config );
10 is( $config->{ name }, 'TestApp' );
11}