(aconn)
| 43 | |
| 44 | |
| 45 | async def test_cant_reenter(aconn): |
| 46 | async with aconn.transaction() as tx: |
| 47 | pass |
| 48 | |
| 49 | with pytest.raises(TypeError): |
| 50 | async with tx: |
| 51 | pass |
| 52 | |
| 53 | |
| 54 | async def test_begins_on_enter(aconn, apipeline): |
nothing calls this directly
no test coverage detected