Files
Grinch-AP/worlds/stardew_valley/test/mods/TestModsFill.py
Jérémie Bolduc 7d5693e0fb Stardew Valley: Move BaseTest out of __init__.py to comply with future conventions (#4991)
* move everything out of init; fix from imports and some typing errors

* why is there a change in multiserver

* fix some relative shits
2025-05-13 09:58:03 +02:00

29 lines
1.0 KiB
Python

from ..bases import SVTestBase
from ... import options
class TestNoGingerIslandCraftingRecipesAreRequired(SVTestBase):
options = {
options.Goal.internal_name: options.Goal.option_craft_master,
options.Craftsanity.internal_name: options.Craftsanity.option_all,
options.ExcludeGingerIsland.internal_name: options.ExcludeGingerIsland.option_true,
options.Mods.internal_name: frozenset(options.Mods.valid_keys)
}
@property
def run_default_tests(self) -> bool:
return True
class TestNoGingerIslandCookingRecipesAreRequired(SVTestBase):
options = {
options.Goal.internal_name: options.Goal.option_gourmet_chef,
options.Cooksanity.internal_name: options.Cooksanity.option_all,
options.ExcludeGingerIsland.internal_name: options.ExcludeGingerIsland.option_true,
options.Mods.internal_name: frozenset(options.Mods.valid_keys)
}
@property
def run_default_tests(self) -> bool:
return True