summary refs log tree commit diff stats
path: root/test/__init__.py
blob: ffbf9032b64abc632074787ea0a76fb7849f4782 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
from typing import ClassVar

from test.bases import WorldTestBase
from .. import LingoTestOptions


class LingoTestBase(WorldTestBase):
    game = "Lingo"
    player: ClassVar[int] = 1

    def world_setup(self, *args, **kwargs):
        LingoTestOptions.disable_forced_good_item = True
        super().world_setup(*args, **kwargs)