(self)
| 17 | |
| 18 | class TestCoordinates: |
| 19 | def test_init_noindex(self) -> None: |
| 20 | coords = Coordinates(coords={"foo": ("x", [0, 1, 2])}) |
| 21 | expected = Dataset(coords={"foo": ("x", [0, 1, 2])}) |
| 22 | assert_identical(coords.to_dataset(), expected) |
| 23 | |
| 24 | def test_init_default_index(self) -> None: |
| 25 | coords = Coordinates(coords={"x": [1, 2]}) |
nothing calls this directly
no test coverage detected