X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=t%2F52-json.t;fp=t%2F52-json.t;h=f4e45c3e947b4a70b6eff37127f254f031979920;hp=0000000000000000000000000000000000000000;hb=572501abb2165014af8973bf9a4aa1f8a522356d;hpb=94270fcc969b81efd9f7c237d592eee67155c7dc diff --git a/t/52-json.t b/t/52-json.t new file mode 100644 index 0000000..f4e45c3 --- /dev/null +++ b/t/52-json.t @@ -0,0 +1,11 @@ +use Test::More tests => 2; + +use Config::Any::JSON; + +my $config = eval { Config::Any::JSON->load( 't/conf/conf.json' ) }; + +SKIP: { + skip "Couldn't Load JSON plugin", 2 if $@; + ok( $config ); + is( $config->{ name }, 'TestApp' ); +}