(self)
| 430 | resp.close() |
| 431 | |
| 432 | def test_no_content_length2(self): |
| 433 | req = ClientRequest('head', 'http://python.org', loop=self.loop) |
| 434 | resp = req.send(self.transport, self.protocol) |
| 435 | self.assertEqual('0', req.headers.get('CONTENT-LENGTH')) |
| 436 | self.loop.run_until_complete(req.close()) |
| 437 | resp.close() |
| 438 | |
| 439 | def test_content_type_auto_header_get(self): |
| 440 | req = ClientRequest('get', 'http://python.org', loop=self.loop) |
nothing calls this directly
no test coverage detected