(self)
| 1354 | |
| 1355 | @gen_test |
| 1356 | def test_unused_connection(self): |
| 1357 | stream = yield self.connect() |
| 1358 | event = Event() |
| 1359 | stream.set_close_callback(event.set) |
| 1360 | yield event.wait() |
| 1361 | |
| 1362 | @gen_test |
| 1363 | def test_idle_after_use(self): |
nothing calls this directly
no test coverage detected