Show actual parse errors
[p5sagit/Config-Any.git] / t / 52-json.t
CommitLineData
5a2e0210 1use strict;
2use warnings;
f0e3c221 3
5a2e0210 4use Test::More;
f0e3c221 5use Config::Any::JSON;
6
5a2e0210 7if ( !Config::Any::JSON->is_supported ) {
8 plan skip_all => 'JSON format not supported';
9}
10else {
11 plan tests => 2;
12}
f0e3c221 13
5a2e0210 14{
15 my $config = Config::Any::JSON->load( 't/conf/conf.json' );
f0e3c221 16 ok( $config );
17 is( $config->{ name }, 'TestApp' );
18}