(self)
| 1032 | assert x, result_from_tuple(x == self.app) |
| 1033 | |
| 1034 | def test_GroupResult_with_parent(self): |
| 1035 | parent = self.app.AsyncResult(uuid()) |
| 1036 | result = self.app.GroupResult( |
| 1037 | uuid(), [self.app.AsyncResult(uuid()) for _ in range(10)], |
| 1038 | parent |
| 1039 | ) |
| 1040 | second_result = result_from_tuple(result.as_tuple(), self.app) |
| 1041 | assert second_result == result |
| 1042 | assert second_result.parent == parent |
| 1043 | |
| 1044 | def test_GroupResult_as_tuple(self): |
| 1045 | parent = self.app.AsyncResult(uuid()) |
nothing calls this directly
no test coverage detected