(self, flag, fn, should_succeed=False)
| 310 | cx.execute("CREATE TABLE Dict (invalid_schema)") |
| 311 | |
| 312 | def check(self, flag, fn, should_succeed=False): |
| 313 | with closing(dbm_sqlite3.open(self.filename, flag)) as db: |
| 314 | with self.assertRaises(dbm_sqlite3.error): |
| 315 | fn(db) |
| 316 | |
| 317 | @staticmethod |
| 318 | def read(db): |
nothing calls this directly
no test coverage detected