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