pass special config options to loaders
[p5sagit/Config-Any.git] / t / 53-perl.t
CommitLineData
f0e3c221 1use Test::More tests => 2;
2
3use Config::Any::Perl;
4
5my $config = eval { Config::Any::Perl->load( 't/conf/conf.pl' ) };
6
7SKIP: {
8 skip "Couldn't Load Perl plugin", 2 if $@;
9 ok( $config );
10 is( $config->{ name }, 'TestApp' );
11}