X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F21_tie_access.t;h=faeaa2f7875cde6258dce55b1d0e495a95196c63;hb=67e9b86f22e8dacf29904f0163be3b23fae91074;hp=d911788c2e00b50e505c83f1e40b7b518aa60967;hpb=2a8ac017aa133fe3fd139ee649f03352149cedf1;p=dbsrgits%2FDBM-Deep.git diff --git a/t/21_tie_access.t b/t/21_tie_access.t index d911788..faeaa2f 100644 --- a/t/21_tie_access.t +++ b/t/21_tie_access.t @@ -1,15 +1,13 @@ -## -# DBM::Deep Test -## use strict; -use Test::More tests => 7; +use warnings FATAL => 'all'; + +use Test::More; use Test::Exception; -use File::Temp qw( tempfile tempdir ); +use t::common qw( new_fh ); use_ok( 'DBM::Deep' ); -my $dir = tempdir(); -my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir ); +my ($fh, $filename) = new_fh(); { my %hash; @@ -17,6 +15,7 @@ my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir ); $hash{key1} = 'value'; is( $hash{key1}, 'value', 'Set and retrieved key1' ); + tied( %hash )->_get_self->_engine->storage->close( tied( %hash )->_get_self ); } { @@ -27,6 +26,7 @@ my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir ); is( keys %hash, 1, "There's one key so far" ); ok( exists $hash{key1}, "... and it's key1" ); + tied( %hash )->_get_self->_engine->storage->close( tied( %hash )->_get_self ); } { @@ -35,12 +35,13 @@ my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir ); file => $filename, type => DBM::Deep->TYPE_ARRAY, }; + tied( @array )->_get_self->_engine->storage->close( tied( @array )->_get_self ); } qr/DBM::Deep: File type mismatch/, "\$SIG_TYPE doesn't match file's type"; } { - my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir ); - DBM::Deep->new( file => $filename, type => DBM::Deep->TYPE_ARRAY ); + my ($fh, $filename) = new_fh(); + my $db = DBM::Deep->new( file => $filename, type => DBM::Deep->TYPE_ARRAY ); throws_ok { tie my %hash, 'DBM::Deep', { @@ -48,4 +49,7 @@ my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir ); type => DBM::Deep->TYPE_HASH, }; } qr/DBM::Deep: File type mismatch/, "\$SIG_TYPE doesn't match file's type"; + $db->_get_self->_engine->storage->close( $db->_get_self ); } + +done_testing;