Removed error/clear_error functions
[dbsrgits/DBM-Deep.git] / t / 23_misc.t
CommitLineData
ffed8b01 1##
2# DBM::Deep Test
3##
4use strict;
5use Test::More;
6use Test::Exception;
7
ebbe4093 8plan tests => 7;
ffed8b01 9
10use_ok( 'DBM::Deep' );
11
12unlink "t/test.db";
075910ed 13my $db = DBM::Deep->new( "t/test.db" );
ffed8b01 14
15$db->{key1} = "value1";
16is( $db->{key1}, "value1", "Value set correctly" );
17
18# Testing to verify that the close() will occur if open is called on an open DB.
14a3acb6 19$db->_open;
ffed8b01 20
21is( $db->{key1}, "value1", "Value still set after re-open" );
22
23throws_ok {
24 my $db = DBM::Deep->new( 't' );
0af414a6 25} qr/^DBM::Deep: Cannot sysopen file: t: /, "Can't open a file we aren't allowed to touch";
ffed8b01 26
27throws_ok {
28 my $db = DBM::Deep->new( __FILE__ );
29} qr/^DBM::Deep: Signature not found -- file is not a Deep DB/, "Only DBM::Deep DB files will be opened";
ebbe4093 30
7f441181 31{
ebbe4093 32 my $db = DBM::Deep->new(
33 file => 't/test.db',
34 locking => 1,
35 );
36 $db->_close;
37 ok( !$db->lock );
38}
39
7f441181 40{
ebbe4093 41 my $db = DBM::Deep->new(
42 file => 't/test.db',
43 locking => 1,
44 );
45 $db->lock;
46 $db->_close;
47 ok( !$db->unlock );
48}