my @array;
my $obj = tie @array, 'DBM::Deep', 't/test.db';
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" );
}