The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More;
use strict;

use Config::Path;

my $conf = Config::Path->new(files => [ 't/conf/complex.yml' ]);
ok(defined($conf));

use Data::Dumper;
is_deeply($conf->fetch('thingies'), [ { name => 'thing1' }, { name => 'thing2' } ], 'fetching an array of hashes');

done_testing;