(self, browser: Browser, method: str)
| 325 | ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS'], |
| 326 | ) |
| 327 | def test_methods_work(self, browser: Browser, method: str) -> None: |
| 328 | impit = Client(browser=browser) |
| 329 | |
| 330 | m = getattr(impit, method.lower()) |
| 331 | |
| 332 | m(get_httpbin_url('/anything')) |
| 333 | |
| 334 | def test_proxy(self, browser: Browser) -> None: |
| 335 | stop_proxy = start_proxy_server(3002) |
nothing calls this directly
no test coverage detected