From c5308d775b049b54894700e0de4cabe39b7efc2d Mon Sep 17 00:00:00 2001 From: Marianne Chevrot Date: Sat, 16 May 2020 21:40:09 +0200 Subject: Add reveal unit test --- tests_solver/test_solver.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests_solver') 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 = [ -- cgit v1.2.3