(self, index)
| 78 | index.sel({}) |
| 79 | |
| 80 | def test_join(self, index) -> None: |
| 81 | with pytest.raises(NotImplementedError): |
| 82 | index.join(CustomIndex({"y": 2})) |
| 83 | |
| 84 | def test_reindex_like(self, index) -> None: |
| 85 | with pytest.raises(NotImplementedError): |
nothing calls this directly
no test coverage detected