r14451@Rob-Kinyons-PowerBook: rob | 2006-06-19 09:57:27 -0400
[dbsrgits/DBM-Deep.git] / t / 39_singletons.t
diff --git a/t/39_singletons.t b/t/39_singletons.t
deleted file mode 100644 (file)
index 2681931..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-use strict;
-use Test::More tests => 2;
-
-use_ok( 'DBM::Deep' );
-
-unlink 't/test.db';
-my $db = DBM::Deep->new(
-    file => "t/test.db",
-    locking => 1,
-    autoflush => 1,
-);
-
-$db->{foo} = { a => 'b' };
-my $x = $db->{foo};
-my $y = $db->{foo};
-is( $x, $y, "The references are the same" );
-
-