Adds slight refactor for n as something model can provide
All checks were successful
gitea-physics/pdme/pipeline/head This commit looks good

This commit is contained in:
2022-01-02 16:47:04 -06:00
parent 3a03204d53
commit 8fee0a27d2
4 changed files with 25 additions and 5 deletions

View File

@@ -9,6 +9,12 @@ def test_model_interface_not_implemented_point_length():
model.point_length()
def test_model_interface_not_implemented_point_n():
model = Model()
with pytest.raises(NotImplementedError):
model.n()
def test_model_interface_not_implemented_cost():
model = Model()