From c8f98009fa544c43e1ad30efdb41b3b16574027d Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 26 Apr 2017 23:10:00 +0200 Subject: Rename test files --- t/having.t | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 t/having.t (limited to 't/having.t') diff --git a/t/having.t b/t/having.t deleted file mode 100644 index 0627ed5..0000000 --- a/t/having.t +++ /dev/null @@ -1,23 +0,0 @@ -#! /usr/bin/env perl6 - -use v6.c; -use Test; -use lib "lib"; - -plan 4; - -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"; -ok $config.has(["a"]), "Check existence of simple key using array"; -ok $config.has(["b", "c"]), "Check existence of nested key using array"; -- cgit v1.1