Files
Archipelago/worlds/jakanddaxter/test/test_moverando.py
massimilianodelliubaldini 8f0a2bc137 Clean imports of unit tests.
2024-09-16 22:29:05 -04:00

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)