MCPcopy
hub / github.com/pydata/xarray / test_combine_nested_join

Method test_combine_nested_join

xarray/tests/test_combine.py:437–440  ·  view source on GitHub ↗
(self, join, expected)

Source from the content-addressed store, hash-verified

435 ],
436 )
437 def test_combine_nested_join(self, join, expected):
438 objs = [Dataset({"x": [0], "y": [0]}), Dataset({"x": [1], "y": [1]})]
439 actual = combine_nested(objs, concat_dim="x", join=join)
440 assert_identical(expected, actual)
441
442 def test_combine_nested_join_exact(self):
443 objs = [Dataset({"x": [0], "y": [0]}), Dataset({"x": [1], "y": [1]})]

Callers

nothing calls this directly

Calls 3

DatasetClass · 0.90
combine_nestedFunction · 0.90
assert_identicalFunction · 0.90

Tested by

no test coverage detected