(self, async_engine)
| 1487 | class AsyncProxyTest(EngineFixture, fixtures.TestBase): |
| 1488 | @async_test |
| 1489 | async def test_get_transaction(self, async_engine): |
| 1490 | async with async_engine.connect() as conn: |
| 1491 | async with conn.begin() as trans: |
| 1492 | is_(trans.connection, conn) |
| 1493 | is_(conn.get_transaction(), trans) |
| 1494 | |
| 1495 | @async_test |
| 1496 | async def test_get_nested_transaction(self, async_engine): |
nothing calls this directly
no test coverage detected