diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-08 18:35:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 17:35:12 -0600 |
commit | bbbbc71bee25cfd22c5304f98f5a7881383585a3 (patch) | |
tree | d27581db7b8db03da4b731fe8c2d5072d3162cf8 /test/__init__.py | |
download | lingo-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__.py | 13 |
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 @@ | |||
1 | from typing import ClassVar | ||
2 | |||
3 | from test.bases import WorldTestBase | ||
4 | from .. import LingoTestOptions | ||
5 | |||
6 | |||
7 | class 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) | ||