(self, index)
| 63 | index.unstack() |
| 64 | |
| 65 | def test_create_variables(self, index) -> None: |
| 66 | assert index.create_variables() == {} |
| 67 | assert index.create_variables({"x": "var"}) == {"x": "var"} |
| 68 | |
| 69 | def test_to_pandas_index(self, index) -> None: |
| 70 | with pytest.raises(TypeError): |
nothing calls this directly
no test coverage detected