(self)
| 22 | assert_identical(coords.to_dataset(), expected) |
| 23 | |
| 24 | def test_init_default_index(self) -> None: |
| 25 | coords = Coordinates(coords={"x": [1, 2]}) |
| 26 | expected = Dataset(coords={"x": [1, 2]}) |
| 27 | assert_identical(coords.to_dataset(), expected) |
| 28 | assert "x" in coords.xindexes |
| 29 | |
| 30 | @pytest.mark.filterwarnings("error:IndexVariable") |
| 31 | def test_init_no_default_index(self) -> None: |
nothing calls this directly
no test coverage detected