Added empty solve test

This commit is contained in:
Adam Urbańczyk
2021-01-19 08:12:50 +01:00
committed by GitHub
parent 033456ec53
commit ccc1983c86

View File

@ -212,3 +212,9 @@ def test_duplicate_name(nested_assy):
with pytest.raises(ValueError):
nested_assy.add(None, name="SECOND")
def test_empty_solve(nested_assy):
with pytest.raises(ValueError):
nested_assy.solve()