()
| 2216 | |
| 2217 | |
| 2218 | def test_cancel_running_tasks(): |
| 2219 | proc = _make_processor() |
| 2220 | assert proc._cancelled is False |
| 2221 | proc.cancel_running_tasks() |
| 2222 | assert proc._cancelled is True |
| 2223 | |
| 2224 | |
| 2225 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected