aboutsummaryrefslogtreecommitdiff
path: root/t/having.t
blob: 3be2935983a355ddd1e55ae4aef46fda2e1e0db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/env perl6

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

plan 2;

use Config;

my $config = Config.new();

$config.read({
    a => "a",
    b => {
        c => "c"
    }
});

ok $config.has("a"), "Check existence of simple key";
ok $config.has("b.c"), "Check existence of nested key";