(self, manager)
| 159 | exception, True) |
| 160 | |
| 161 | def test_link_error_using_signature(self, manager): |
| 162 | fail = signature('t.integration.tasks.fail', args=("test",)) |
| 163 | return_exception = signature('t.integration.tasks.return_exception') |
| 164 | |
| 165 | fail.link_error(return_exception) |
| 166 | |
| 167 | exception = ExpectedException("Task expected to fail", "test") |
| 168 | assert (fail.delay().get(timeout=TIMEOUT / 10, propagate=False), True) == ( |
| 169 | exception, True) |
| 170 | |
| 171 | |
| 172 | class test_chain: |
nothing calls this directly
no test coverage detected