(self, expectation=None)
| 154 | occ.observed = True |
| 155 | |
| 156 | def observe_all(self, expectation=None): |
| 157 | self.expect_frozen() |
| 158 | occs = ( |
| 159 | list(self) |
| 160 | if expectation is None |
| 161 | else [occ for occ in self if occ == expectation] |
| 162 | ) |
| 163 | self.observe(*occs) |
| 164 | |
| 165 | def wait_until(self, condition, freeze=None): |
| 166 | freeze = freeze or self.is_frozen |
nothing calls this directly
no test coverage detected