X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F03_bighash.t;h=cf082bd531578713159ef6e60766e939bb5e6a0d;hb=15d754ddb85bbacab5748d2fc02f21b5debd48c3;hp=8aff35358fd4fb2ea87c4027ead6e0da8010e9a0;hpb=86867f3a6f23efdf7c7290f5a0b7a69f5f39834f;p=dbsrgits%2FDBM-Deep.git diff --git a/t/03_bighash.t b/t/03_bighash.t index 8aff353..cf082bd 100644 --- a/t/03_bighash.t +++ b/t/03_bighash.t @@ -8,6 +8,8 @@ use t::common qw( new_fh ); use_ok( 'DBM::Deep' ); +diag "This test can take up to a minute to run. Please be patient."; + my ($fh, $filename) = new_fh(); my $db = DBM::Deep->new( file => $filename, @@ -32,7 +34,6 @@ for ( 0 .. $max_keys ) { } is( $count, $max_keys, "We read $count keys" ); - my @keys = sort keys %$db; cmp_ok( scalar(@keys), '==', $max_keys + 1, "Number of keys is correct" ); my @control = sort map { "hello $_" } 0 .. $max_keys;