()
| 328 | |
| 329 | |
| 330 | def test_inline_functions_protects_output_keys(): |
| 331 | dsk = {"x": (inc, 1), "y": (double, "x")} |
| 332 | assert inline_functions(dsk, [], [inc]) == {"y": (double, (inc, 1))} |
| 333 | assert inline_functions(dsk, ["x"], [inc]) == {"y": (double, "x"), "x": (inc, 1)} |
| 334 | |
| 335 | |
| 336 | def test_functions_of(): |
nothing calls this directly
no test coverage detected