(obj)
| 534 | |
| 535 | @pytest.mark.parametrize("obj", [set, {0}, [], [1], {}, {2: 3}, (), (4,)]) |
| 536 | def test_parse_non_task_inputs(obj): |
| 537 | assert parse_input(obj) == obj |
| 538 | |
| 539 | |
| 540 | def test_resolve_aliases(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…