Fixed test to reflect reality
rkinyon [Mon, 20 Feb 2006 02:36:35 +0000 (02:36 +0000)]
t/25_tie_return_value.t

index dfb875a..9e76b7b 100644 (file)
@@ -21,8 +21,5 @@ use_ok( 'DBM::Deep' );
     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" );
 }