(self)
| 974 | assert res.status == states.RETRY |
| 975 | |
| 976 | def test_forget(self): |
| 977 | res = EagerResult('x', 'x', states.RETRY) |
| 978 | res.forget() |
| 979 | |
| 980 | def test_revoke(self): |
| 981 | res = self.raising.apply(args=[3, 3]) |
nothing calls this directly
no test coverage detected