()
| 63 | |
| 64 | |
| 65 | def test_task_label(): |
| 66 | assert task_label((partial(add, 1), 1)) == "add" |
| 67 | assert task_label((add, 1)) == "add" |
| 68 | assert task_label((add, (add, 1, 2))) == "add(...)" |
| 69 | |
| 70 | |
| 71 | def test_label(): |
nothing calls this directly
no test coverage detected