mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-29 16:43:21 -07:00
19 lines
561 B
Python
19 lines
561 B
Python
from ..test import JakAndDaxterTestBase
|
|
from ..Items import move_item_table
|
|
|
|
|
|
class MoveRandoTest(JakAndDaxterTestBase):
|
|
options = {
|
|
"enable_move_randomizer": True
|
|
}
|
|
|
|
def test_move_items_in_pool(self):
|
|
for move in move_item_table:
|
|
self.assertIn(move_item_table[move], {item.name for item in self.multiworld.itempool})
|
|
|
|
def test_cannot_reach_without_move(self):
|
|
self.assertAccessDependency(
|
|
["GR: Climb Up The Cliff"],
|
|
[["Double Jump"], ["Crouch"]],
|
|
only_check_listed=True)
|