diff options
Diffstat (limited to 'test/TestOptions.py')
-rw-r--r-- | test/TestOptions.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/TestOptions.py b/test/TestOptions.py index 1769677..fce0743 100644 --- a/test/TestOptions.py +++ b/test/TestOptions.py | |||
@@ -29,3 +29,23 @@ class TestAllPanelHunt(LingoTestBase): | |||
29 | "level_2_requirement": "800", | 29 | "level_2_requirement": "800", |
30 | "early_color_hallways": "true" | 30 | "early_color_hallways": "true" |
31 | } | 31 | } |
32 | |||
33 | |||
34 | class TestShuffleSunwarps(LingoTestBase): | ||
35 | options = { | ||
36 | "shuffle_doors": "none", | ||
37 | "shuffle_colors": "false", | ||
38 | "victory_condition": "pilgrimage", | ||
39 | "shuffle_sunwarps": "true", | ||
40 | "sunwarp_access": "normal" | ||
41 | } | ||
42 | |||
43 | |||
44 | class TestShuffleSunwarpsAccess(LingoTestBase): | ||
45 | options = { | ||
46 | "shuffle_doors": "none", | ||
47 | "shuffle_colors": "false", | ||
48 | "victory_condition": "pilgrimage", | ||
49 | "shuffle_sunwarps": "true", | ||
50 | "sunwarp_access": "individual" | ||
51 | } \ No newline at end of file | ||