(self)
| 343 | assert none_res.state == states.SUCCESS |
| 344 | |
| 345 | def test_get_when_ignored(self): |
| 346 | result = self.app.AsyncResult(uuid()) |
| 347 | result.ignored = True |
| 348 | # Does not block |
| 349 | assert result.get() is None |
| 350 | |
| 351 | def test_eq_ne(self): |
| 352 | r1 = self.app.AsyncResult(self.task1['id']) |
nothing calls this directly
no test coverage detected