()
| 100 | |
| 101 | @pytest_asyncio.fixture(scope="module", loop_scope="module") |
| 102 | async def auto_token_ctx(): |
| 103 | ctx = ConnectionTokenContext(token=None) |
| 104 | await ctx.setup() |
| 105 | yield ctx |
| 106 | await ctx.teardown() |
| 107 | |
| 108 | |
| 109 | class TestConnectionToken: |
nothing calls this directly
no test coverage detected
searching dependent graphs…