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