(self)
| 1006 | assert x, result_from_tuple(x == self.app) |
| 1007 | |
| 1008 | def test_with_parent(self): |
| 1009 | x = self.app.AsyncResult(uuid()) |
| 1010 | x.parent = self.app.AsyncResult(uuid()) |
| 1011 | y = result_from_tuple(x.as_tuple(), self.app) |
| 1012 | assert y == x |
| 1013 | assert y.parent == x.parent |
| 1014 | assert isinstance(y.parent, AsyncResult) |
| 1015 | |
| 1016 | def test_compat(self): |
| 1017 | uid = uuid() |
nothing calls this directly
no test coverage detected