(self)
| 292 | self.assertEqual(exc.sqlite_errorname, "SQLITE_CONSTRAINT_CHECK") |
| 293 | |
| 294 | def test_disallow_instantiation(self): |
| 295 | with memory_database() as cx: |
| 296 | check_disallow_instantiation(self, type(cx("select 1"))) |
| 297 | check_disallow_instantiation(self, sqlite.Blob) |
| 298 | |
| 299 | def test_complete_statement(self): |
| 300 | self.assertFalse(sqlite.complete_statement("select t")) |
nothing calls this directly
no test coverage detected