diff options
Diffstat (limited to 'test/TestOptions.py')
-rw-r--r-- | test/TestOptions.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/TestOptions.py b/test/TestOptions.py new file mode 100644 index 0000000..1769677 --- /dev/null +++ b/test/TestOptions.py | |||
@@ -0,0 +1,31 @@ | |||
1 | from . import LingoTestBase | ||
2 | |||
3 | |||
4 | class TestMultiShuffleOptions(LingoTestBase): | ||
5 | options = { | ||
6 | "shuffle_doors": "complex", | ||
7 | "progressive_orange_tower": "true", | ||
8 | "shuffle_colors": "true", | ||
9 | "shuffle_paintings": "true", | ||
10 | "early_color_hallways": "true" | ||
11 | } | ||
12 | |||
13 | |||
14 | class TestPanelsanity(LingoTestBase): | ||
15 | options = { | ||
16 | "shuffle_doors": "complex", | ||
17 | "progressive_orange_tower": "true", | ||
18 | "location_checks": "insanity", | ||
19 | "shuffle_colors": "true" | ||
20 | } | ||
21 | |||
22 | |||
23 | class TestAllPanelHunt(LingoTestBase): | ||
24 | options = { | ||
25 | "shuffle_doors": "complex", | ||
26 | "progressive_orange_tower": "true", | ||
27 | "shuffle_colors": "true", | ||
28 | "victory_condition": "level_2", | ||
29 | "level_2_requirement": "800", | ||
30 | "early_color_hallways": "true" | ||
31 | } | ||