(self)
| 260 | index.sel({"x": slice("2001", "2002")}) |
| 261 | |
| 262 | def test_equals(self) -> None: |
| 263 | index1 = PandasIndex([1, 2, 3], "x") |
| 264 | index2 = PandasIndex([1, 2, 3], "x") |
| 265 | assert index1.equals(index2) is True |
| 266 | |
| 267 | def test_join(self) -> None: |
| 268 | index1 = PandasIndex(["a", "aa", "aaa"], "x", coord_dtype="<U3") |
nothing calls this directly
no test coverage detected