(self, method: str)
| 186 | ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS'], |
| 187 | ) |
| 188 | def test_methods_work(self, method: str) -> None: |
| 189 | m = getattr(impit, method.lower()) |
| 190 | m(get_httpbin_url('/anything')) |
| 191 | |
| 192 | def test_proxy(self) -> None: |
| 193 | stop_proxy = start_proxy_server(3002) |
nothing calls this directly
no test coverage detected