[instancer.solver] Add more tests

This commit is contained in:
Behdad Esfahbod 2022-08-08 11:57:26 -06:00
parent 52c791ad1d
commit e7d4416c27

View File

@ -193,6 +193,20 @@ class RebaseTentTest(object):
(1, (1, 1, 1)),
]
),
pytest.param(
(.5, .5, 1), (.5, .5, 1),
[
(1, None),
(-1, (0, 1, 1)),
]
),
pytest.param(
(.25, .5, 1), (.5, .5, 1),
[
(1, None),
(-1, (0, 1, 1)),
]
),
],
)
def test_rebaseTent(self, tent, axisRange, expected):