2 use Test::More tests => 5;
4 use t::common qw( new_fh );
8 my ($fh, $filename) = new_fh();
9 my $db = DBM::Deep->new(
15 $db->{foo} = { a => 'b' };
22 local $TODO = "Singletons are unimplmeneted yet";
23 is( $x, $y, "The references are the same" );
29 is( $db->{foo}, undef );