added C/M/V legacy shortcuts
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / 51-ini.t
1 use Test::More tests => 2;\r
2 \r
3 use Catalyst::Plugin::ConfigLoader::INI;\r
4 \r
5 my $config = eval { Catalyst::Plugin::ConfigLoader::INI->load( 't/conf/conf.ini' ) };\r
6 \r
7 SKIP: {\r
8     skip "Couldn't Load INI plugin", 2 if $@;\r
9     ok( $config );\r
10     is( $config->{ name }, 'TestApp' );\r
11 }