more files needed to create the dists, and tests
[p5sagit/Config-Any.git] / t / 51-ini.t
CommitLineData
572501ab 1use Test::More tests => 2;\r
2\r
3use Config::Any::INI;\r
4\r
5my $config = eval { Config::Any::INI->load( 't/conf/conf.ini' ) };\r
6\r
7SKIP: {\r
8 skip "Couldn't Load INI plugin", 2 if $@;\r
9 ok( $config );\r
10 is( $config->{ name }, 'TestApp' );\r
11}\r