diff options
Diffstat (limited to 'tests_solver')
-rw-r--r-- | tests_solver/test_solver.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests_solver/test_solver.py b/tests_solver/test_solver.py index 03d68ed..2ddc152 100644 --- a/tests_solver/test_solver.py +++ b/tests_solver/test_solver.py @@ -34,6 +34,15 @@ def test_is_swappable(): assert not kanagrid.is_swappable((0, 0), (1, 0)) +def test_reveal_myst(): + + kanagrid_orig = KanaGrid((1, 1), [Kana("myst", "ko")]) + kanagrid_new = kanagrid_orig.action(pos=(0, 0), action_type="reveal") + expected_grid = KanaGrid((1, 1), [Kana("norm", "ko")], action_count=1) + + assert kanagrid_new == expected_grid + + def test_kana_grid(): initial_grid = [ |