fix for ini subsections (RT #32726), use from_json for JSON v2.x, refactor test suite.
[p5sagit/Config-Any.git] / t / 53-perl.t
1 use strict;
2 use warnings;
3
4 use Test::More tests => 3;
5
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