remove eval so the Perl loader dies on invalid content.
[p5sagit/Config-Any.git] / t / 50-general.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Config::Any::General;
6
7 if ( !Config::Any::General->is_supported ) {
8     plan skip_all => 'Config::General format not supported';
9 }
10 else {
11     plan tests => 4;
12 }
13
14 {
15     my $config = Config::Any::General->load( 't/conf/conf.conf' );
16     ok( $config );
17     is( $config->{ name }, 'TestApp' );
18     ok( exists $config->{ Component } );
19 }
20
21 {
22     my $config = Config::Any::General->load( 't/conf/conf.conf',
23         { -LowerCaseNames => 1 } );
24     ok( exists $config->{ component } );
25 }