AgentnessBench / tests /grid /test_difficulty.py
irregular6612's picture
refactor: restructure proteus into game/web subpackages
426093b
Raw
History Blame Contribute Delete
259 Bytes
from proteus.game.engine.difficulty import Difficulty
def test_difficulty_values():
assert Difficulty.EASY.value == "easy"
assert {d.value for d in Difficulty} == {"easy", "medium", "hard", "expert"}
assert Difficulty("hard") is Difficulty.HARD