summary refs log tree commit diff stats
path: root/test/__init__.py
diff options
context:
space:
mode:
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)