(self)
| 2197 | self.conn.sock = self.sock |
| 2198 | |
| 2199 | def get_headers_and_fp(self): |
| 2200 | f = io.BytesIO(self.sock.data) |
| 2201 | f.readline() # read the request line |
| 2202 | message = client.parse_headers(f) |
| 2203 | return message, f |
| 2204 | |
| 2205 | def test_list_body(self): |
| 2206 | # Note that no content-length is automatically calculated for |
no test coverage detected