(self, uri, method='GET', body=None, headers={})
| 129 | threading_helper.threading_cleanup(*self._threads) |
| 130 | |
| 131 | def request(self, uri, method='GET', body=None, headers={}): |
| 132 | self.connection = http.client.HTTPConnection(self.HOST, self.PORT) |
| 133 | self.connection.request(method, uri, body, headers) |
| 134 | return self.connection.getresponse() |
| 135 | |
| 136 | |
| 137 | class BaseHTTPServerTestCase(BaseTestCase): |
no test coverage detected