From: Graham Knop <haarg@haarg.org>
Date: Thu, 26 Jan 2012 00:45:20 +0000 (-0500)
Subject: fix skip count for SQLite without fk support
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fpeople%2Fhaarg%2Fsqlite-improvements;p=dbsrgits%2FDBIx-Class.git

fix skip count for SQLite without fk support
---

diff --git a/t/752sqlite.t b/t/752sqlite.t
index fd538ba..dacfb6f 100644
--- a/t/752sqlite.t
+++ b/t/752sqlite.t
@@ -101,8 +101,7 @@ $schema->storage->dbh_do(sub {
   SKIP: {
     my ($fk_enabled) = $dbh->selectrow_array('PRAGMA foreign_keys');
     if (! defined $fk_enabled) {
-      # skip
-      skip 'SQLite not compiled with foreign key enforcement', 2;
+      skip 'SQLite not compiled with foreign key enforcement', 4;
       return;
     }
     $schema->storage->connect_call_use_foreign_keys;