MCPcopy Index your code
hub / github.com/pydata/xarray / test_single_dataset

Method test_single_dataset

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

Source from the content-addressed store, hash-verified

95 assert_combined_tile_ids_equal(expected, actual)
96
97 def test_single_dataset(self):
98 ds = create_test_data(0)
99 input = [ds]
100
101 expected = {(0,): ds}
102 actual: dict[tuple[int, ...], Dataset] = _infer_concat_order_from_positions(
103 input
104 )
105 assert_combined_tile_ids_equal(expected, actual)
106
107 def test_redundant_nesting(self):
108 ds = create_test_data

Callers

nothing calls this directly

Calls 3

create_test_dataFunction · 0.85

Tested by

no test coverage detected