(self)
| 178 | |
| 179 | @gen_test |
| 180 | def test_multi_dict_future(self): |
| 181 | results = yield dict(foo=self.async_future(1), bar=self.async_future(2)) |
| 182 | self.assertEqual(results, dict(foo=1, bar=2)) |
| 183 | |
| 184 | @gen_test |
| 185 | def test_multi_exceptions(self): |
nothing calls this directly
no test coverage detected