Activated more tests marked as skip-all until internal references are supported
rkinyon [Mon, 4 Dec 2006 15:37:20 +0000 (15:37 +0000)]
t/16_circular.t [moved from t/16_circular.todo with 96% similarity]
t/22_internal_copy.t [moved from t/22_internal_copy.todo with 94% similarity]
t/31_references.t

similarity index 96%
rename from t/16_circular.todo
rename to t/16_circular.t
index 501435d..61ec238 100644 (file)
@@ -2,7 +2,8 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 32;
+use Test::More skip_all => "Internal references are not supported right now";
+#use Test::More tests => 32;
 use t::common qw( new_fh );
 
 use_ok( 'DBM::Deep' );
similarity index 94%
rename from t/22_internal_copy.todo
rename to t/22_internal_copy.t
index 9de69f4..edd2531 100644 (file)
@@ -2,7 +2,8 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 13;
+use Test::More skip_all => "Internal references are not supported right now";
+#use Test::More tests => 13;
 use t::common qw( new_fh );
 
 use_ok( 'DBM::Deep' );
index 6d91aef..ebeb811 100644 (file)
@@ -56,7 +56,7 @@ is( $db->{array}[2]{b}, 'floober' );
 my %hash2 = ( abc => [ 1 .. 3 ] );
 $array[3] = \%hash2;
 SKIP: {
-    skip "Internal references are currently unsupported", 1;
+    skip "Internal references are not supported right now", 1;
     $hash2{ def } = \%hash;
 
     is( $array[3]{def}{foo}, 2 );