(self)
| 187 | self.con.connect() |
| 188 | |
| 189 | def test_command(self): |
| 190 | self.con.request('GET', '/') |
| 191 | res = self.con.getresponse() |
| 192 | self.assertEqual(res.status, HTTPStatus.NOT_IMPLEMENTED) |
| 193 | |
| 194 | def test_request_line_trimming(self): |
| 195 | self.con._http_vsn_str = 'HTTP/1.1\n' |
nothing calls this directly
no test coverage detected