(self)
| 1044 | |
| 1045 | @gen_test |
| 1046 | def test_pipelined_requests(self): |
| 1047 | yield self.connect() |
| 1048 | self.stream.write( |
| 1049 | b"GET / HTTP/1.1\r\nHost:127.0.0.1\r\n\r\nGET / HTTP/1.1\r\nHost:127.0.0.1\r\n\r\n" |
| 1050 | ) |
| 1051 | yield self.read_response() |
| 1052 | yield self.read_response() |
| 1053 | self.close() |
| 1054 | |
| 1055 | @gen_test |
| 1056 | def test_pipelined_cancel(self): |
nothing calls this directly
no test coverage detected