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