(self, index)
| 86 | index.reindex_like(CustomIndex({"y": 2})) |
| 87 | |
| 88 | def test_equals(self, index) -> None: |
| 89 | with pytest.raises(NotImplementedError): |
| 90 | index.equals(CustomIndex({"y": 2})) |
| 91 | |
| 92 | def test_roll(self, index) -> None: |
| 93 | assert index.roll({}) is None |
nothing calls this directly
no test coverage detected