(self, async_engine)
| 91 | eq_(async_session.sync_session.info, {"foo": "bar"}) |
| 92 | |
| 93 | def test_init(self, async_engine): |
| 94 | ss = AsyncSession(bind=async_engine) |
| 95 | is_(ss.bind, async_engine) |
| 96 | |
| 97 | binds = {Table: async_engine} |
| 98 | ss = AsyncSession(binds=binds) |
| 99 | is_(ss.binds, binds) |
| 100 | |
| 101 | @async_test |
| 102 | @testing.combinations((True,), (False,), argnames="use_scalar") |
nothing calls this directly
no test coverage detected