(self)
| 131 | |
| 132 | @pytest.mark.usefixtures('depends_on_current_app') |
| 133 | def test_reduce_direct(self): |
| 134 | x = AsyncResult('1', app=self.app) |
| 135 | fun, args = x.__reduce__() |
| 136 | assert fun(*args) == x |
| 137 | |
| 138 | def test_children(self): |
| 139 | x = self.app.AsyncResult('1') |
nothing calls this directly
no test coverage detected