(self)
| 45 | assert response.text |
| 46 | |
| 47 | def test_content_encoding(self) -> None: |
| 48 | resp = impit.get(get_httpbin_url('/encoding/utf8')) |
| 49 | assert resp.status_code == 200 |
| 50 | assert resp.encoding == 'utf-8' |
| 51 | |
| 52 | def test_headers_work(self) -> None: |
| 53 | response = impit.get(get_httpbin_url('/headers'), headers={'Impit-Test': 'foo'}) |
nothing calls this directly
no test coverage detected