aboutsummaryrefslogtreecommitdiff
path: root/t/02-empty-source.t
diff options
context:
space:
mode:
Diffstat (limited to 't/02-empty-source.t')
-rw-r--r--t/02-empty-source.t22
1 files changed, 0 insertions, 22 deletions
diff --git a/t/02-empty-source.t b/t/02-empty-source.t
deleted file mode 100644
index 55403e1..0000000
--- a/t/02-empty-source.t
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/env perl6
-
-use v6.d;
-
-use Test;
-
-use Hash::Merge::Augment;
-
-plan 1;
-
-my %hash =
- a => "a",
- b => {
- c => "c"
- },
-;
-
-my %empty;
-
-%empty.merge(%hash);
-
-is-deeply %empty, %hash, "Merge into empty hash";