Disable test failing on recent DBD::SQLite
Peter Rabbitson [Wed, 15 Jun 2016 13:59:36 +0000 (15:59 +0200)]
Changes
t/60core.t

diff --git a/Changes b/Changes
index fb3b815..6583c96 100644 (file)
--- a/Changes
+++ b/Changes
@@ -8,6 +8,7 @@ Revision history for DBIx::Class
           implementation changes due to RT#100648 made an alarm() based
           timeout lock-prone.
         - Adjust Oracle SQLMaker to accommodate fixed API in SQL::Abstract
+        - Disable test failing on newer SQLite (workaround for RT#96499)
 
     * Misc
         - Remove warning about potential side effects of RT#79576 (scheduled)
index f2e363a..16987df 100644 (file)
@@ -356,14 +356,6 @@ my $newbook = $schema->resultset( 'Bookmark' )->find(1);
 
 lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error");
 
-# test cascade_delete through many_to_many relations
-{
-  my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
-  lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' );  # real test in ordered.t
-  is( $schema->resultset("CD")->search({artist => 1}), 0, 'Cascading through has_many top level.');
-  is( $schema->resultset("CD_to_Producer")->search({cd => 1}), 0, 'Cascading through has_many children.');
-}
-
 # test column_info
 {
   $schema->source("Artist")->{_columns}{'artistid'} = {};