()
| 13 | |
| 14 | |
| 15 | def test_node_from_parent_disallowed_arguments() -> None: |
| 16 | with pytest.raises(TypeError, match="session is"): |
| 17 | nodes.Node.from_parent(None, session=None) # type: ignore[arg-type] |
| 18 | with pytest.raises(TypeError, match="config is"): |
| 19 | nodes.Node.from_parent(None, config=None) # type: ignore[arg-type] |
| 20 | |
| 21 | |
| 22 | def test_node_direct_construction_deprecated() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…