(self, **kw)
| 2046 | |
| 2047 | class ResetOnReturnTest(PoolTestBase): |
| 2048 | def _fixture(self, **kw): |
| 2049 | dbapi = Mock() |
| 2050 | return ( |
| 2051 | dbapi, |
| 2052 | pool.QueuePool(creator=lambda: dbapi.connect("foo.db"), **kw), |
| 2053 | ) |
| 2054 | |
| 2055 | def _engine_fixture(self, **kw): |
| 2056 | dbapi = Mock() |
no test coverage detected