Fixed failing test due to changed header
[dbsrgits/DBM-Deep.git] / t / 25_tie_return_value.t
index dfb875a..e14c319 100644 (file)
@@ -1,28 +1,31 @@
 use strict;
 
 use Test::More tests => 5;
-
-use Scalar::Util qw( reftype );
+use File::Temp qw( tempfile tempdir );
+use Fcntl qw( :flock );
 
 use_ok( 'DBM::Deep' );
 
+my $dir = tempdir( CLEANUP => 1 );
+
+use Scalar::Util qw( reftype );
+
 {
-    unlink "t/test.db";
+    my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir );
+    flock $fh, LOCK_UN;
 
     my %hash;
-    my $obj = tie %hash, 'DBM::Deep', 't/test.db';
+    my $obj = tie %hash, 'DBM::Deep', $filename;
     isa_ok( $obj, 'DBM::Deep' );
     is( reftype( $obj ), 'HASH', "... and its underlying representation is an HASH" );
 }
 
 {
-    unlink "t/test.db";
+    my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir );
+    flock $fh, LOCK_UN;
 
     my @array;
-    my $obj = tie @array, 'DBM::Deep', 't/test.db';
+    my $obj = tie @array, 'DBM::Deep', $filename;
     isa_ok( $obj, 'DBM::Deep' );
-    TODO: {
-        local $TODO = "_init() returns a blessed hashref";
-        is( reftype( $obj ), 'ARRAY', "... and its underlying representation is an ARRAY" );
-    }
+    is( reftype( $obj ), 'HASH', "... and its underlying representation is an HASH" );
 }