(self, browser: Browser)
| 110 | assert response.text |
| 111 | |
| 112 | def test_content_encoding(self, browser: Browser) -> None: |
| 113 | impit = Client(browser=browser) |
| 114 | |
| 115 | resp = impit.get(get_httpbin_url('/encoding/utf8')) |
| 116 | assert resp.status_code == 200 |
| 117 | assert resp.encoding == 'utf-8' |
| 118 | |
| 119 | def test_headers_work(self, browser: Browser) -> None: |
| 120 | impit = Client(browser=browser) |
nothing calls this directly
no test coverage detected