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

Method test_nested_merge_with_self

xarray/tests/test_combine.py:474–477  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

472 assert_identical(expected, actual)
473
474 def test_nested_merge_with_self(self):
475 data = Dataset({"x": 0})
476 actual = combine_nested([data, data, data], concat_dim=None)
477 assert_identical(data, actual)
478
479 def test_nested_merge_with_overlapping_values(self):
480 ds1 = Dataset({"a": ("x", [1, 2]), "x": [0, 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