(self, x, value=None)
| 322 | ) |
| 323 | |
| 324 | def _assert_fn(self, x, value=None): |
| 325 | with testing.db.connect() as conn: |
| 326 | eq_(conn.execute(self.table.select()).fetchall(), [(x, value)]) |
| 327 | |
| 328 | def test_transaction_engine_ctx_commit(self): |
| 329 | fn = self._trans_fn() |
no test coverage detected