summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-12-10 14:36:38 -0500
committerGitHub <noreply@github.com>2024-12-10 20:36:38 +0100
commit1c7fcd002eb59e8cda09997eb89ecd609aff7275 (patch)
tree9e19ab6e89b2215d8f1cfb36d4915f07b1290e00 /test
parentb5fc38f1f961f13d885b13582e3709704a0e57c3 (diff)
downloadlingo-apworld-1c7fcd002eb59e8cda09997eb89ecd609aff7275.tar.gz
lingo-apworld-1c7fcd002eb59e8cda09997eb89ecd609aff7275.tar.bz2
lingo-apworld-1c7fcd002eb59e8cda09997eb89ecd609aff7275.zip
Lingo: Fix number hunt issues on panels mode (#4342)
Diffstat (limited to 'test')
-rw-r--r--test/TestDatafile.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/TestDatafile.py b/test/TestDatafile.py index 60acb3e..a01ff41 100644 --- a/test/TestDatafile.py +++ b/test/TestDatafile.py
@@ -1,7 +1,7 @@
1import os 1import os
2import unittest 2import unittest
3 3
4from ..static_logic import HASHES 4from ..static_logic import HASHES, PANELS_BY_ROOM
5from ..utils.pickle_static_data import hash_file 5from ..utils.pickle_static_data import hash_file
6 6
7 7
@@ -14,3 +14,8 @@ class TestDatafile(unittest.TestCase):
14 "LL1.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'") 14 "LL1.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'")
15 self.assertEqual(ids_file_hash, HASHES["ids.yaml"], 15 self.assertEqual(ids_file_hash, HASHES["ids.yaml"],
16 "ids.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'") 16 "ids.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'")
17
18 def test_panel_doors_are_set(self) -> None:
19 # This panel is defined earlier in the file than the panel door, so we want to check that the panel door is
20 # correctly applied.
21 self.assertNotEqual(PANELS_BY_ROOM["Outside The Agreeable"]["FIVE (1)"].panel_door, None)