(self, *args, **kwargs)
| 2561 | |
| 2562 | class TestIndexVariable(VariableSubclassobjects): |
| 2563 | def cls(self, *args, **kwargs) -> IndexVariable: |
| 2564 | return IndexVariable(*args, **kwargs) |
| 2565 | |
| 2566 | def test_init(self): |
| 2567 | with pytest.raises(ValueError, match=r"must be 1-dimensional"): |
nothing calls this directly
no test coverage detected