Check that a generator-based coroutine hasn't completed yet.
(self, gen)
| 74 | """ |
| 75 | |
| 76 | def assertGeneratorRunning(self, gen): |
| 77 | """ |
| 78 | Check that a generator-based coroutine hasn't completed yet. |
| 79 | |
| 80 | """ |
| 81 | next(gen) |
| 82 | |
| 83 | def assertGeneratorReturns(self, gen): |
| 84 | """ |
no outgoing calls