From 5a248da0c49f33d1b578d5b92768f0be35dd6797 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Sun, 23 Apr 2017 21:44:40 +0200 Subject: Add multi get() to accept arrays --- t/getting.t | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 't') diff --git a/t/getting.t b/t/getting.t index 15937a7..9d0cc5c 100644 --- a/t/getting.t +++ b/t/getting.t @@ -4,7 +4,7 @@ use v6.c; use Test; use lib "lib"; -plan 3; +plan 6; use Config; @@ -20,3 +20,7 @@ $config.read({ ok $config.get("a") eq "a"; ok $config.get("b.c") eq "c"; ok $config.get("nonexistant") === Nil; + +ok $config.get(["a"]) eq "a"; +ok $config.get(["b", "c"]) eq "c"; +ok $config.get(["nonexistant"]) === Nil; -- cgit v1.1