Run all queued callbacks on the IOLoop. In these tests, this method is used after calling notify() to preserve the pre-5.0 behavior in which callbacks ran synchronously.
(self)
| 38 | future.add_done_callback(callback) |
| 39 | |
| 40 | def loop_briefly(self): |
| 41 | """Run all queued callbacks on the IOLoop. |
| 42 | |
| 43 | In these tests, this method is used after calling notify() to |
| 44 | preserve the pre-5.0 behavior in which callbacks ran |
| 45 | synchronously. |
| 46 | """ |
| 47 | self.io_loop.add_callback(self.stop) |
| 48 | self.wait() |
| 49 | |
| 50 | def test_repr(self): |
| 51 | c = locks.Condition() |
no test coverage detected