added test configs
[p5sagit/Config-Any.git] / t / 50-general.t
1 use Test::More tests => 2;\r
2 \r
3 use Config::Any::General;\r
4 \r
5 my $config = eval { Config::Any::General->load( 't/conf/conf.conf' ) };\r
6 \r
7 SKIP: {\r
8     skip "Couldn't Load Config::General plugin", 2 if $@;\r
9     ok( $config );\r
10     is( $config->{ name }, 'TestApp' );\r
11 }\r