(self)
| 2241 | self.conn.sock = self.sock |
| 2242 | |
| 2243 | def get_headers_and_fp(self): |
| 2244 | f = io.BytesIO(self.sock.data) |
| 2245 | f.readline() # read the request line |
| 2246 | message = client.parse_headers(f) |
| 2247 | return message, f |
| 2248 | |
| 2249 | def test_list_body(self): |
| 2250 | # Note that no content-length is automatically calculated for |
no test coverage detected