##
# DBM::Deep Test
##
-
+$|++;
use strict;
use Test::More tests => 6;
use Test::Exception;
unlink "t/test.db";
my %hash;
tie %hash, 'DBM::Deep', 't/test.db';
- $hash{'foo'} = 'bar';
undef %hash;
my @array;
unlink "t/test.db";
my @array;
tie @array, 'DBM::Deep', 't/test.db';
- $array[0] = 'bar';
undef @array;
my %hash;