diff options
Diffstat (limited to 'test/TestOptions.py')
-rw-r--r-- | test/TestOptions.py | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/test/TestOptions.py b/test/TestOptions.py index fce0743..bd8ed81 100644 --- a/test/TestOptions.py +++ b/test/TestOptions.py | |||
@@ -3,7 +3,7 @@ from . import LingoTestBase | |||
3 | 3 | ||
4 | class TestMultiShuffleOptions(LingoTestBase): | 4 | class TestMultiShuffleOptions(LingoTestBase): |
5 | options = { | 5 | options = { |
6 | "shuffle_doors": "complex", | 6 | "shuffle_doors": "doors", |
7 | "progressive_orange_tower": "true", | 7 | "progressive_orange_tower": "true", |
8 | "shuffle_colors": "true", | 8 | "shuffle_colors": "true", |
9 | "shuffle_paintings": "true", | 9 | "shuffle_paintings": "true", |
@@ -13,7 +13,7 @@ class TestMultiShuffleOptions(LingoTestBase): | |||
13 | 13 | ||
14 | class TestPanelsanity(LingoTestBase): | 14 | class TestPanelsanity(LingoTestBase): |
15 | options = { | 15 | options = { |
16 | "shuffle_doors": "complex", | 16 | "shuffle_doors": "doors", |
17 | "progressive_orange_tower": "true", | 17 | "progressive_orange_tower": "true", |
18 | "location_checks": "insanity", | 18 | "location_checks": "insanity", |
19 | "shuffle_colors": "true" | 19 | "shuffle_colors": "true" |
@@ -22,7 +22,18 @@ class TestPanelsanity(LingoTestBase): | |||
22 | 22 | ||
23 | class TestAllPanelHunt(LingoTestBase): | 23 | class TestAllPanelHunt(LingoTestBase): |
24 | options = { | 24 | options = { |
25 | "shuffle_doors": "complex", | 25 | "shuffle_doors": "doors", |
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 | } | ||
32 | |||
33 | |||
34 | class TestAllPanelHuntPanelsMode(LingoTestBase): | ||
35 | options = { | ||
36 | "shuffle_doors": "panels", | ||
26 | "progressive_orange_tower": "true", | 37 | "progressive_orange_tower": "true", |
27 | "shuffle_colors": "true", | 38 | "shuffle_colors": "true", |
28 | "victory_condition": "level_2", | 39 | "victory_condition": "level_2", |