]> git.vpit.fr Git - perl/modules/Sub-Nary.git/commitdiff
Add tests for delete
authorVincent Pit <vince@profvince.com>
Tue, 5 Aug 2008 21:55:30 +0000 (23:55 +0200)
committerVincent Pit <vince@profvince.com>
Tue, 5 Aug 2008 21:55:30 +0000 (23:55 +0200)
t/24-ops.t

index 28e86e8f64d2b016a533bb5af23312d561b94ac7..f3f62f49337d65f48edab6aa609aab7a9993a0f7 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 32;
+use Test::More tests => 34;
 
 use Sub::Nary;
 
@@ -12,6 +12,9 @@ my $sn = Sub::Nary->new();
 my ($x, %h);
 
 my @tests = (
+ [ sub { delete $h{foo} },             1 ],
+ [ sub { delete @h{qw/foo bar baz/} }, 3 ],
+
  [ sub { return <$x> }, 'list' ],
 
  [ sub { -f $0, -r $0 }, 2 ],