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