summary refs log tree commit diff stats
path: root/test/__init__.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-08 18:35:12 -0500
committerGitHub <noreply@github.com>2023-11-08 17:35:12 -0600
commitbbbbc71bee25cfd22c5304f98f5a7881383585a3 (patch)
treed27581db7b8db03da4b731fe8c2d5072d3162cf8 /test/__init__.py
downloadlingo-apworld-bbbbc71bee25cfd22c5304f98f5a7881383585a3.tar.gz
lingo-apworld-bbbbc71bee25cfd22c5304f98f5a7881383585a3.tar.bz2
lingo-apworld-bbbbc71bee25cfd22c5304f98f5a7881383585a3.zip
Lingo: New game (#1806)
Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com>
Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com>
Co-authored-by: Phar <zach@alliware.com>
Diffstat (limited to 'test/__init__.py')
-rw-r--r--test/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..ffbf903 --- /dev/null +++ b/test/__init__.py
@@ -0,0 +1,13 @@
1from typing import ClassVar
2
3from test.bases import WorldTestBase
4from .. import LingoTestOptions
5
6
7class LingoTestBase(WorldTestBase):
8 game = "Lingo"
9 player: ClassVar[int] = 1
10
11 def world_setup(self, *args, **kwargs):
12 LingoTestOptions.disable_forced_good_item = True
13 super().world_setup(*args, **kwargs)