(self)
| 780 | combine_nested(objs, concat_dim="x") # type: ignore[arg-type] |
| 781 | |
| 782 | def test_datatree(self): |
| 783 | objs = [DataTree.from_dict({"foo": 0}), DataTree.from_dict({"foo": 1})] |
| 784 | expected = DataTree.from_dict({"foo": ("x", [0, 1])}) |
| 785 | actual = combine_nested(objs, concat_dim="x") |
| 786 | assert expected.identical(actual) |
| 787 | |
| 788 | |
| 789 | class TestCombineDatasetsbyCoords: |
nothing calls this directly
no test coverage detected