changelog
[p5sagit/Config-Any.git] / t / 53-perl.t
1 use strict;
2 use warnings;
3
4 use Test::More tests => 7;
5 use Config::Any;
6 use Config::Any::Perl;
7
8 {
9     my $file   = 't/conf/conf.pl';
10     my $config = Config::Any::Perl->load( $file );
11
12     ok( $config );
13     is( $config->{ name }, 'TestApp' );
14
15     my $config_load2 = Config::Any::Perl->load( $file );
16     is_deeply( $config_load2, $config, 'multiple loads of the same file' );
17 }
18
19 # test invalid config
20 {
21     my $file = 't/invalid/conf.pl';
22     my $config = eval { Config::Any::Perl->load( $file ) };
23
24     ok( !$config, 'config load failed' );
25     ok( $@,       "error thrown ($@)" );
26 }
27
28 # parse error generated on invalid config
29 {
30     my $file = 't/invalid/conf.pl';
31     my $config = eval { Config::Any->load_files( { files => [$file], use_ext => 1} ) };
32
33     ok( !$config, 'config load failed' );
34     ok( $@,       "error thrown ($@)" );
35 }