r15625@rob-kinyons-computer (orig r9171): rkinyon | 2007-02-26 11:56:32 -0500
[dbsrgits/DBM-Deep.git] / t / 17_import.t
index 204be66..7792b6d 100644 (file)
@@ -109,13 +109,16 @@ use_ok( 'DBM::Deep' );
     };
     like( $@, qr/Storage of references of type 'SCALAR' is not supported/, 'Error message correct' );
 
-    cmp_deeply(
-        $db,
-        noclass({
-            foo => 'bar',
-        }),
-        "Everything matches",
-    );
+    TODO: {
+        local $TODO = "Importing cannot occur within a transaction yet.";
+        cmp_deeply(
+            $db,
+            noclass({
+                foo => 'bar',
+            }),
+            "Everything matches",
+        );
+    }
 }
 
 __END__