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=29a5ef611544bc1e5da92707d60f327b460e43ad;hpb=fde3db1a5e4879bebec5ca8051caa2804d1a826e;p=dbsrgits%2FDBM-Deep.git diff --git a/t/21_tie_access.t b/t/21_tie_access.t index 29a5ef6..faeaa2f 100644 --- a/t/21_tie_access.t +++ b/t/21_tie_access.t @@ -1,8 +1,7 @@ -## -# DBM::Deep Test -## use strict; -use Test::More tests => 7; +use warnings FATAL => 'all'; + +use Test::More; use Test::Exception; use t::common qw( new_fh ); @@ -16,6 +15,7 @@ my ($fh, $filename) = new_fh(); $hash{key1} = 'value'; is( $hash{key1}, 'value', 'Set and retrieved key1' ); + tied( %hash )->_get_self->_engine->storage->close( tied( %hash )->_get_self ); } { @@ -26,6 +26,7 @@ my ($fh, $filename) = new_fh(); 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 ); } { @@ -34,12 +35,13 @@ my ($fh, $filename) = new_fh(); 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) = new_fh(); - DBM::Deep->new( file => $filename, type => DBM::Deep->TYPE_ARRAY ); + my $db = DBM::Deep->new( file => $filename, type => DBM::Deep->TYPE_ARRAY ); throws_ok { tie my %hash, 'DBM::Deep', { @@ -47,4 +49,7 @@ my ($fh, $filename) = new_fh(); 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;