Added test for unlocking an unlocked filehandle
# DBM::Deep Test
##
use strict;
-use Test::More tests => 4;
+use Test::More tests => 5;
+use Test::Exception;
use t::common qw( new_fh );
use_ok( 'DBM::Deep' );
locking => 1,
);
+lives_ok {
+ $db->unlock;
+} "Can call unlock on an unlocked DB.";
+
##
# basic put/get
##
=item * How should the inode check for locking happen?
-=item * Attempt to unlock an unlocked fh
-
=item * medium and large pack_sizes
Need to make sure I only run the large pack_size test on 64-bit Perls