summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-12-03 18:06:11 -0500
committerGitHub <noreply@github.com>2023-12-04 00:06:11 +0100
commitee4ebe472759e91d511f3f151311f3a54e68051b (patch)
tree450f60e28d7fe43970a7e6a23597d1d1814dc5b9 /test
parente5d14e2e19772bb58905770f663c974592e43f32 (diff)
downloadlingo-apworld-ee4ebe472759e91d511f3f151311f3a54e68051b.tar.gz
lingo-apworld-ee4ebe472759e91d511f3f151311f3a54e68051b.tar.bz2
lingo-apworld-ee4ebe472759e91d511f3f151311f3a54e68051b.zip
Lingo: Default color shuffle to on (#2548)
* Lingo: Default color shuffle on

* Raise error if no progression in multiworld
Diffstat (limited to 'test')
-rw-r--r--test/TestDoors.py9
-rw-r--r--test/TestProgressive.py3
2 files changed, 8 insertions, 4 deletions
diff --git a/test/TestDoors.py b/test/TestDoors.py index 5dc989a..f496c5f 100644 --- a/test/TestDoors.py +++ b/test/TestDoors.py
@@ -3,7 +3,8 @@ from . import LingoTestBase
3 3
4class TestRequiredRoomLogic(LingoTestBase): 4class TestRequiredRoomLogic(LingoTestBase):
5 options = { 5 options = {
6 "shuffle_doors": "complex" 6 "shuffle_doors": "complex",
7 "shuffle_colors": "false",
7 } 8 }
8 9
9 def test_pilgrim_first(self) -> None: 10 def test_pilgrim_first(self) -> None:
@@ -49,7 +50,8 @@ class TestRequiredRoomLogic(LingoTestBase):
49 50
50class TestRequiredDoorLogic(LingoTestBase): 51class TestRequiredDoorLogic(LingoTestBase):
51 options = { 52 options = {
52 "shuffle_doors": "complex" 53 "shuffle_doors": "complex",
54 "shuffle_colors": "false",
53 } 55 }
54 56
55 def test_through_rhyme(self) -> None: 57 def test_through_rhyme(self) -> None:
@@ -76,7 +78,8 @@ class TestRequiredDoorLogic(LingoTestBase):
76 78
77class TestSimpleDoors(LingoTestBase): 79class TestSimpleDoors(LingoTestBase):
78 options = { 80 options = {
79 "shuffle_doors": "simple" 81 "shuffle_doors": "simple",
82 "shuffle_colors": "false",
80 } 83 }
81 84
82 def test_requirement(self): 85 def test_requirement(self):
diff --git a/test/TestProgressive.py b/test/TestProgressive.py index 026971c..917c6e7 100644 --- a/test/TestProgressive.py +++ b/test/TestProgressive.py
@@ -81,7 +81,8 @@ class TestSimpleHallwayRoom(LingoTestBase):
81 81
82class TestProgressiveArtGallery(LingoTestBase): 82class TestProgressiveArtGallery(LingoTestBase):
83 options = { 83 options = {
84 "shuffle_doors": "complex" 84 "shuffle_doors": "complex",
85 "shuffle_colors": "false",
85 } 86 }
86 87
87 def test_item(self): 88 def test_item(self):