aboutsummaryrefslogtreecommitdiff
path: root/t/01-read.t
blob: fa5a75bb1c634daa1a1d9d16ef2d7a1d22a022e8 (plain)
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
#! /usr/bin/env perl6

use v6.c;
use Test;
use lib "lib";

use Config;
use Config::Parser::toml;

plan 4;

my $config = Config.new();

ok $config.read("t/files/config.toml"), "File reading throws no error";

subtest "Contents match" => {
    plan 2;

    is $config.get("header.a"), "a", "a = a";
    is $config.get("header.b"), "b", "b = b";
};

ok $config.read("t/files/merge.toml"), "File merging throws no error";

subtest "Contents match after merging" => {
    plan 4;

    is $config.get("header.a"), "a", "a = a";
    is $config.get("header.b"), "b", "b = b";
    is $config.get("header.c"), "c", "c = c";

    is $config.get("merge-header.a"), "a", "a = a";
};