(self, browser: Browser)
| 98 | assert resp.status_code == 200 if protocol == 'https://' else resp.status_code == 301 |
| 99 | |
| 100 | def test_context_manager(self, browser: Browser) -> None: |
| 101 | with Client(browser=browser) as impit: |
| 102 | resp = impit.get(get_httpbin_url('/get')) |
| 103 | assert resp.status_code == 200 |
| 104 | |
| 105 | def test_boringssl_based_server(self, browser: Browser) -> None: |
| 106 | impit = Client(browser=browser) |
nothing calls this directly
no test coverage detected