diff options
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) | ||