(self)
| 273 | assert not list(task.info('foo')) |
| 274 | |
| 275 | def test_reduce_direct(self): |
| 276 | task = Task(uuid='uuid', name='tasks.add', args='(2, 2)') |
| 277 | fun, args = task.__reduce__() |
| 278 | task2 = fun(*args) |
| 279 | assert task == task2 |
| 280 | |
| 281 | def test_ready(self): |
| 282 | task = Task(uuid='abcdefg', |
nothing calls this directly
no test coverage detected