(self, pool_cls, is_async_kind)
| 312 | (pool.AssertionPool, None), |
| 313 | ) |
| 314 | def test_is_asyncio_from_dialect(self, pool_cls, is_async_kind): |
| 315 | p = pool_cls(creator=object()) |
| 316 | for is_async in (True, False): |
| 317 | if is_async: |
| 318 | p._dialect = _AsyncConnDialect() |
| 319 | else: |
| 320 | p._dialect = _ConnDialect() |
| 321 | if is_async_kind is None: |
| 322 | eq_(p._is_asyncio, is_async) |
| 323 | else: |
| 324 | eq_(p._is_asyncio, is_async_kind) |
| 325 | |
| 326 | @testing.combinations( |
| 327 | (pool.QueuePool, False), |
nothing calls this directly
no test coverage detected