Rename of Scalar -> Ref
[dbsrgits/DBM-Deep.git] / t / 03_bighash.t
1 ##
2 # DBM::Deep Test
3 ##
4 use strict;
5 use Test::More tests => 2;
6 use File::Temp qw( tempfile tempdir );
7
8 use_ok( 'DBM::Deep' );
9
10 my $dir = tempdir( CLEANUP => 1 );
11 my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir );
12 my $db = DBM::Deep->new(
13         file => $filename,
14         type => DBM::Deep->TYPE_HASH
15 );
16
17 ##
18 # put/get many keys
19 ##
20 my $max_keys = 4000;
21
22 for ( 0 .. $max_keys ) {
23     $db->put( "hello $_" => "there " . $_ * 2 );
24 }
25
26 my $count = -1;
27 for ( 0 .. $max_keys ) {
28     $count = $_;
29     unless ( $db->get( "hello $_" ) eq "there " . $_ * 2 ) {
30         last;
31     };
32 }
33 is( $count, $max_keys, "We read $count keys" );