Add a test for keys $tied
authorFather Chrysostomos <sprout@cpan.org>
Tue, 19 Apr 2011 05:26:52 +0000 (22:26 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 19 Apr 2011 05:43:13 +0000 (22:43 -0700)
This was ‘inadvertently’ fixed with commit 7ac5715

t/op/tie_fetch_count.t

index 69d4619..6d2da1c 100644 (file)
@@ -7,7 +7,7 @@ BEGIN {
     chdir 't' if -d 't';
     @INC = '../lib';
     require './test.pl';
-    plan (tests => 209);
+    plan (tests => 210);
 }
 
 use strict;
@@ -165,6 +165,7 @@ $dummy  = @$var2        ; check_count '@{}';
 $dummy  = shift $var2   ; check_count 'shift arrayref';
 tie my $var3 => 'main', {};
 $dummy  = %$var3        ; check_count '%{}';
+$dummy  = keys $var3    ; check_count 'keys hashref';
 {
     no strict 'refs';
     tie my $var4 => 'main', **;