(self)
| 968 | assert res.wait(propagate=False) |
| 969 | |
| 970 | def test_wait(self): |
| 971 | res = EagerResult('x', 'x', states.RETRY) |
| 972 | res.wait() |
| 973 | assert res.state == states.RETRY |
| 974 | assert res.status == states.RETRY |
| 975 | |
| 976 | def test_forget(self): |
| 977 | res = EagerResult('x', 'x', states.RETRY) |
nothing calls this directly
no test coverage detected