(self, other)
| 472 | return self if other is None else other.after(self) |
| 473 | |
| 474 | def __and__(self, other): |
| 475 | assert isinstance(other, Expectation) |
| 476 | return AndExpectation(self, other) |
| 477 | |
| 478 | def __or__(self, other): |
| 479 | assert isinstance(other, Expectation) |
nothing calls this directly
no test coverage detected