The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.010;
use strict;
use warnings;
use Test::More;
use File::Spec;
use FindBin qw($Bin);

use Exobrain::Config;

$ENV{EXOBRAIN_CONFIG} = File::Spec->catfile($Bin, 'config.d');

my $config = Exobrain::Config->new;

is($config->{Test}{foo},  "baz", "Override data test");
is($config->{Test}{nyan}, "cat", "Simple config test");

done_testing;