()
| 1139 | |
| 1140 | |
| 1141 | def test_substitute_subclasses(): |
| 1142 | t = MySubclass("key", func, "a", TaskRef("b"), custom_kwarg_only="foo") |
| 1143 | t2 = t.substitute({"b": "c"}) |
| 1144 | assert t2.custom_kwarg_only == "foo" |
| 1145 | assert t2({"a": "a", "c": "b"}) == t({"a": "a", "b": "b"}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…