This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
010cbf10035c56d2bdf7035728dcc8b6125e2f35
[perl5.git] / t / op / delete.t
1 #!./perl
2
3 # $RCSfile: delete.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:44 $
4
5 print "1..7\n";
6
7 $foo{1} = 'a';
8 $foo{2} = 'b';
9 $foo{3} = 'c';
10
11 $foo = delete $foo{2};
12
13 if ($foo eq 'b') {print "ok 1\n";} else {print "not ok 1 $foo\n";}
14 if ($foo{2} eq '') {print "ok 2\n";} else {print "not ok 2 $foo{2}\n";}
15 if ($foo{1} eq 'a') {print "ok 3\n";} else {print "not ok 3\n";}
16 if ($foo{3} eq 'c') {print "ok 4\n";} else {print "not ok 4\n";}
17
18 $foo = join('',values(foo));
19 if ($foo eq 'ac' || $foo eq 'ca') {print "ok 5\n";} else {print "not ok 5\n";}
20
21 foreach $key (keys foo) {
22     delete $foo{$key};
23 }
24
25 $foo{'foo'} = 'x';
26 $foo{'bar'} = 'y';
27
28 $foo = join('',values(foo));
29 if ($foo eq 'xy' || $foo eq 'yx') {print "ok 6\n";} else {print "not ok 6\n";}
30
31 $refhash{"top"}->{"foo"} = "FOO";
32 $refhash{"top"}->{"bar"} = "BAR";
33
34 delete $refhash{"top"}->{"bar"};
35 @list = keys %{$refhash{"top"}};
36
37 print "@list" eq "foo" ? "ok 7\n" : "not ok 7 @list\n";