(self)
| 471 | |
| 472 | @gen_test |
| 473 | def test_path_args(self): |
| 474 | ws = yield self.ws_connect("/path_args/hello") |
| 475 | res = yield ws.read_message() |
| 476 | self.assertEqual(res, "hello") |
| 477 | |
| 478 | @gen_test |
| 479 | def test_coroutine(self): |
nothing calls this directly
no test coverage detected