(self, unique_indexes, indexes)
| 622 | assert indexes.dims == {"x": 3, "y": 3, "z": 4} |
| 623 | |
| 624 | def test_get_unique(self, unique_indexes, indexes) -> None: |
| 625 | assert indexes.get_unique() == unique_indexes |
| 626 | |
| 627 | def test_is_multi(self, indexes) -> None: |
| 628 | assert indexes.is_multi("one") is True |
nothing calls this directly
no test coverage detected