(self, browser: Browser)
| 89 | |
| 90 | @pytest.mark.asyncio |
| 91 | async def test_context_manager(self, browser: Browser) -> None: |
| 92 | async with AsyncClient(browser=browser) as impit: |
| 93 | resp = await impit.get(get_httpbin_url('/get')) |
| 94 | assert resp.status_code == 200 |
| 95 | |
| 96 | @pytest.mark.asyncio |
| 97 | async def test_boringssl_based_server(self, browser: Browser) -> None: |
nothing calls this directly
no test coverage detected