(self, async_engine)
| 1558 | class AsyncProxyTest(EngineFixture, fixtures.TestBase): |
| 1559 | @async_test |
| 1560 | async def test_get_transaction(self, async_engine): |
| 1561 | async with async_engine.connect() as conn: |
| 1562 | async with conn.begin() as trans: |
| 1563 | is_(trans.connection, conn) |
| 1564 | is_(conn.get_transaction(), trans) |
| 1565 | |
| 1566 | @async_test |
| 1567 | async def test_get_nested_transaction(self, async_engine): |
nothing calls this directly
no test coverage detected