(self)
| 328 | |
| 329 | @gen_test |
| 330 | def test_websocket_gen(self): |
| 331 | ws = yield self.ws_connect("/echo") |
| 332 | yield ws.write_message("hello") |
| 333 | response = yield ws.read_message() |
| 334 | self.assertEqual(response, "hello") |
| 335 | |
| 336 | def test_websocket_callbacks(self): |
| 337 | with ignore_deprecation(): |
nothing calls this directly
no test coverage detected