credit for Alex
[dbsrgits/DBM-Deep.git] / t / 07_locking.t
index 58ea83f..ca335fe 100644 (file)
@@ -2,21 +2,22 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 3;
+use Test::More tests => 5;
+use Test::Exception;
+use t::common qw( new_fh );
 
 use_ok( 'DBM::Deep' );
 
-##
-# basic file open
-##
-unlink "t/test.db";
+my ($fh, $filename) = new_fh();
 my $db = DBM::Deep->new(
-       file => "t/test.db",
-       locking => 1
+    file => $filename,
+    fh => $fh,
+    locking => 1,
 );
-if ($db->error()) {
-       die "ERROR: " . $db->error();
-}
+
+lives_ok {
+    $db->unlock;
+} "Can call unlock on an unlocked DB.";
 
 ##
 # basic put/get
@@ -24,10 +25,13 @@ if ($db->error()) {
 $db->{key1} = "value1";
 is( $db->{key1}, "value1", "key1 is set" );
 
+$db->{key2} = [ 1 .. 3 ];
+is( $db->{key2}[1], 2 );
+
 ##
 # explicit lock
 ##
-$db->lock( DBM::Deep->LOCK_EX );
+$db->lock_exclusive;
 $db->{key1} = "value2";
 $db->unlock();
 is( $db->{key1}, "value2", "key1 is overridden" );