blob: faa78dee36927a1c844c04b1bfdb5794397fc799 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!perl
#
# regression tests for old bugs that don't fit other categories
BEGIN {
if ($ENV{PERL_CORE}){
chdir 't' if -d 't';
unshift @INC, '../lib';
require Config; import Config;
no warnings 'once';
if ($Config{'extensions'} !~ /\bData\/Dumper\b/) {
print "1..0 # Skip: Data::Dumper was not built\n";
exit 0;
}
}
}
use strict;
use Test::More tests => 1;
use Data::Dumper;
{
sub iterate_hash {
my ($h) = @_;
my $count = 0;
$count++ while each %$h;
return $count;
}
my $dumper = Data::Dumper->new( [\%ENV], ['ENV'] )->Sortkeys(1);
my $orig_count = iterate_hash(\%ENV);
$dumper->Dump;
my $new_count = iterate_hash(\%ENV);
is($new_count, $orig_count, 'correctly resets hash iterators');
}
|