We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42f8cd5 commit 07d3b5cCopy full SHA for 07d3b5c
Lib/sqlite3/test/dbapi.py
@@ -203,6 +203,8 @@ def test_in_transaction_ro(self):
203
self.cx.in_transaction = True
204
205
206
+@unittest.skipIf(hasattr(sqlite.Connection, "serialize") == False,
207
+ "Serialize API missing")
208
class SerializeTests(unittest.TestCase):
209
def test_serialize_deserialize(self):
210
with sqlite.connect(":memory:") as cx:
@@ -671,6 +673,8 @@ def run(con, errors):
671
673
if len(errors) > 0:
672
674
self.fail("\n".join(errors))
675
676
+ @unittest.skipIf(hasattr(sqlite.Connection, "serialize") == False,
677
678
def test_con_serialize(self):
679
def run(con, err):
680
try:
0 commit comments