(self, browser: Browser, method: str)
| 339 | ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS'], |
| 340 | ) |
| 341 | async def test_methods_work(self, browser: Browser, method: str) -> None: |
| 342 | impit = AsyncClient(browser=browser) |
| 343 | |
| 344 | m = getattr(impit, method.lower()) |
| 345 | |
| 346 | await m(get_httpbin_url('/anything')) |
| 347 | |
| 348 | @pytest.mark.asyncio |
| 349 | async def test_proxy(self, browser: Browser) -> None: |
nothing calls this directly
no test coverage detected