summaryrefslogtreecommitdiff
path: root/t/op/delete.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/delete.t')
-rw-r--r--t/op/delete.t29
1 files changed, 29 insertions, 0 deletions
diff --git a/t/op/delete.t b/t/op/delete.t
new file mode 100644
index 0000000000..b5920dd397
--- /dev/null
+++ b/t/op/delete.t
@@ -0,0 +1,29 @@
+#!./perl
+
+# $Header: delete.t,v 4.0 91/03/20 01:51:56 lwall Locked $
+
+print "1..6\n";
+
+$foo{1} = 'a';
+$foo{2} = 'b';
+$foo{3} = 'c';
+
+$foo = delete $foo{2};
+
+if ($foo eq 'b') {print "ok 1\n";} else {print "not ok 1 $foo\n";}
+if ($foo{2} eq '') {print "ok 2\n";} else {print "not ok 2 $foo{2}\n";}
+if ($foo{1} eq 'a') {print "ok 3\n";} else {print "not ok 3\n";}
+if ($foo{3} eq 'c') {print "ok 4\n";} else {print "not ok 4\n";}
+
+$foo = join('',values(foo));
+if ($foo eq 'ac' || $foo eq 'ca') {print "ok 5\n";} else {print "not ok 5\n";}
+
+foreach $key (keys foo) {
+ delete $foo{$key};
+}
+
+$foo{'foo'} = 'x';
+$foo{'bar'} = 'y';
+
+$foo = join('',values(foo));
+if ($foo eq 'xy' || $foo eq 'yx') {print "ok 6\n";} else {print "not ok 6\n";}