a5d1d36fa6
t/ had lots of directories and files mirroring src/lib/Hydra. This moves those files under t/Hydra
28 lines
462 B
Perl
28 lines
462 B
Perl
use strict;
|
|
use warnings;
|
|
use Setup;
|
|
|
|
my %ctx = test_init(
|
|
use_external_destination_store => 0,
|
|
hydra_config => "include foo.conf"
|
|
);
|
|
|
|
write_file($ctx{'tmpdir'} . "/foo.conf", q|
|
|
<foo>
|
|
include bar.conf
|
|
</foo>
|
|
|);
|
|
|
|
write_file($ctx{'tmpdir'} . "/bar.conf", q|
|
|
bar = baz
|
|
|);
|
|
|
|
require Hydra::Helper::Nix;
|
|
use Test2::V0;
|
|
|
|
is(Hydra::Helper::Nix::getHydraConfig(), {
|
|
foo => { bar => "baz" }
|
|
}, "Nested includes work.");
|
|
|
|
done_testing;
|