(self)
| 261 | assert set(result.coords) == {"a", "b", "c", "d"} |
| 262 | |
| 263 | def test_to_dataset_inherit_invalid(self) -> None: |
| 264 | tree = DataTree() |
| 265 | with pytest.raises(ValueError, match="Invalid value for inherit"): |
| 266 | tree.to_dataset(inherit="invalid") # type: ignore[arg-type] |
| 267 | |
| 268 | |
| 269 | class TestVariablesChildrenNameCollisions: |
nothing calls this directly
no test coverage detected