(self)
| 95 | self.__exception = exception |
| 96 | |
| 97 | def __iter__(self): |
| 98 | if not self.done(): |
| 99 | self._asyncio_future_blocking = True |
| 100 | yield self |
| 101 | self.assertTrue(self.done()) |
| 102 | return self.result() |
| 103 | |
| 104 | |
| 105 | class DuckTests(test_utils.TestCase): |
no test coverage detected