(self)
| 136 | super().tearDown() |
| 137 | |
| 138 | def test_future(self): |
| 139 | future = self.client.capitalize("hello") |
| 140 | self.io_loop.add_future(future, self.stop) |
| 141 | self.wait() |
| 142 | self.assertEqual(future.result(), "HELLO") |
| 143 | |
| 144 | def test_future_error(self): |
| 145 | future = self.client.capitalize("HELLO") |
nothing calls this directly
no test coverage detected