(tid, meta, state, **kwargs)
| 135 | _started = [] |
| 136 | |
| 137 | def store_result(tid, meta, state, **kwargs): |
| 138 | if state == states.STARTED: |
| 139 | _started.append(tid) |
| 140 | |
| 141 | self.mytask.backend.store_result = Mock(name='store_result') |
| 142 | self.mytask.backend.store_result.side_effect = store_result |
no outgoing calls
no test coverage detected