File: 14-loader-env-lookup.t

package info (click to toggle)
libconfig-zomg-perl 1.000000-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 264 kB
  • sloc: perl: 352; makefile: 9; sh: 4
file content (35 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use strict;
use warnings;

use Test::More;

use Config::ZOMG;

eval {
    delete $ENV{$_} for qw/CATALYST_CONFIG_LOCAL_SUFFIX/;
};

$ENV{CATALYST_CONFIG} = "t/assets/some_random_file.pl";

my $config = Config::ZOMG->new(qw{ name xyzzy path t/assets env_lookup CATALYST });

ok($config->load);
is($config->load->{'Controller::Foo'}->{foo},       'bar');
is($config->load->{'Model::Baz'}->{qux},            'xyzzy');
is($config->load->{'view'},                         'View::TT');
is($config->load->{'random'},                        1);

$ENV{XYZZY_CONFIG} = "t/assets/xyzzy.pl";

$config = Config::ZOMG->new(qw{ name xyzzy path t/assets }, env_lookup => [qw/CATALYST/]);

ok($config->load);
is($config->load->{'Controller::Foo'}->{foo},       'bar');
is($config->load->{'Controller::Foo'}->{new},       'key');
is($config->load->{'Model::Baz'}->{qux},            'xyzzy');
is($config->load->{'Model::Baz'}->{another},        'new key');
is($config->load->{'view'},                         'View::TT::New');
is($config->load->{'foo_sub'},                      '__foo(x,y)__' );
is($config->load->{'literal_macro'},                '__literal(__DATA__)__');

done_testing;