(self)
| 1001 | class test_tuples: |
| 1002 | |
| 1003 | def test_AsyncResult(self): |
| 1004 | x = self.app.AsyncResult(uuid()) |
| 1005 | assert x, result_from_tuple(x.as_tuple() == self.app) |
| 1006 | assert x, result_from_tuple(x == self.app) |
| 1007 | |
| 1008 | def test_with_parent(self): |
| 1009 | x = self.app.AsyncResult(uuid()) |
nothing calls this directly
no test coverage detected