(self)
| 419 | request_handler = DummyRequestHandler |
| 420 | |
| 421 | def test_get(self): |
| 422 | response = self.request('/') |
| 423 | self.assertEqual(response.status, HTTPStatus.OK) |
| 424 | |
| 425 | def request(self, uri, method='GET', body=None, headers={}): |
| 426 | context = ssl._create_unverified_context() |
nothing calls this directly
no test coverage detected