fixed EXISTS
This commit is contained in:
parent
a94bdc6ca2
commit
879640f4c5
2 changed files with 4 additions and 2 deletions
|
@ -31,6 +31,8 @@ my $tmp = tempdir( CLEANUP => 1 );
|
|||
$hash{delete} = 'delete';
|
||||
is(delete $hash{delete}, 'delete');
|
||||
is(delete $hash{delete}, undef);
|
||||
ok(exists $hash{foo});
|
||||
ok(!exists $hash{delete});
|
||||
|
||||
is(join(" ", sort keys %hash), "foo yay");
|
||||
is(join(" ", sort values %hash), "baz yappo");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue