aboutsummaryrefslogtreecommitdiff
path: root/t/08-unsetting.t.t
blob: 330ba5a3c3a9ac3378d453a9e592288c2eb8c746 (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
#! /usr/bin/env perl6

use v6.c;
use Test;

plan 8;

use Config;

my $config = Config.new;

$config.read: %(
	a => "b",
	c => %(
		d => "e",
	),
);

ok $config<a>:exists, "'a' exists";
ok $config<a>:delete, "'a' gets deleted";
nok $config<a>:exists, "'a' no longer exists";
ok $config<c>:exists, "'c' remains untouched";

ok $config.has("c.d"), "'c.d' exists";
ok $config.unset("c.d"), "'c.d' gets deleted";
nok $config.has("c.d"), "'c.d' no longer exists";
ok $config.has("c"), "'c' still exists";