(self)
| 16 | self.abortable.AsyncResult(tid), AbortableAsyncResult) |
| 17 | |
| 18 | def test_is_not_aborted(self): |
| 19 | self.abortable.push_request() |
| 20 | try: |
| 21 | result = self.abortable.apply_async() |
| 22 | tid = result.id |
| 23 | assert not self.abortable.is_aborted(task_id=tid) |
| 24 | finally: |
| 25 | self.abortable.pop_request() |
| 26 | |
| 27 | def test_is_aborted_not_abort_result(self): |
| 28 | self.abortable.AsyncResult = self.app.AsyncResult |
nothing calls this directly
no test coverage detected