Moved almost all direct accesses to into ::File
[dbsrgits/DBM-Deep.git] / t / 03_bighash.t
index 0fbe30d..091de54 100644 (file)
@@ -2,29 +2,31 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More;
-
-my $max_keys = 4000;
-plan tests => 2 + $max_keys;
+use Test::More tests => 2;
+use t::common qw( new_fh );
 
 use_ok( 'DBM::Deep' );
 
-unlink "t/test.db";
+my ($fh, $filename) = new_fh();
 my $db = DBM::Deep->new(
-       file => "t/test.db",
+       file => $filename,
        type => DBM::Deep->TYPE_HASH
 );
-if ($db->error()) {
-       die "ERROR: " . $db->error();
-}
 
 ##
 # put/get many keys
 ##
+my $max_keys = 4000;
+
 for ( 0 .. $max_keys ) {
     $db->put( "hello $_" => "there " . $_ * 2 );
 }
 
+my $count = -1;
 for ( 0 .. $max_keys ) {
-    is( $db->get( "hello $_" ), "there " . $_ * 2, "The ${_}th value is correct" );
+    $count = $_;
+    unless ( $db->get( "hello $_" ) eq "there " . $_ * 2 ) {
+        last;
+    };
 }
+is( $count, $max_keys, "We read $count keys" );