use strict; use warnings; use Test::More; plan qw/no_plan/; use Config::ZOMG; my $config; $config = Config::ZOMG->new( qw{ name default path t/assets }, default => { home => 'a-galaxy-far-far-away', test => 'alpha', }, ); is($config->load->{home}, 'a-galaxy-far-far-away'); is($config->load->{path_to}, '__path_to(tatooine)__'); is($config->load->{test}, 'beta');