(self, expectation, freeze=True, explain=True, observe=True)
| 216 | return self._wait_until_realized(expectation, freeze, explain=explain) |
| 217 | |
| 218 | def wait_for_next(self, expectation, freeze=True, explain=True, observe=True): |
| 219 | if explain: |
| 220 | log.info("Waiting for next {0!r}", expectation) |
| 221 | return self._wait_until_realized( |
| 222 | self._proceeding_from >> expectation, freeze, explain, observe |
| 223 | ) |
| 224 | |
| 225 | def new(self): |
| 226 | self.expect_frozen() |