(self)
| 1793 | assert_identical(actual, expected) |
| 1794 | |
| 1795 | def test_stack_unstack_consistency(self): |
| 1796 | v = Variable(["x", "y"], [[0, 1], [2, 3]]) |
| 1797 | actual = v.stack(z=("x", "y")).unstack(z={"x": 2, "y": 2}) |
| 1798 | assert_identical(actual, v) |
| 1799 | |
| 1800 | @pytest.mark.filterwarnings("error::RuntimeWarning") |
| 1801 | def test_unstack_without_missing(self): |
nothing calls this directly
no test coverage detected