Files
Grinch-AP/worlds/kh2/test/TestGoal.py
JaredWeakStrike 81411a191c KH2: init cleanup and random visit locking fix and docs update. (#1652)
Random Visit Locking wasn't copying correctly
init cleanup and moved itempool population to create_items
Updated docs due to a lot of people having issues setting it up.
2023-04-10 04:12:23 +02:00

31 lines
605 B
Python

from . import KH2TestBase
from ..Names import ItemName
class TestDefault(KH2TestBase):
options = {}
def testEverything(self):
self.collect_all_but([ItemName.Victory])
self.assertBeatable(True)
class TestLuckyEmblem(KH2TestBase):
options = {
"Goal": 1,
}
def testEverything(self):
self.collect_all_but([ItemName.LuckyEmblem])
self.assertBeatable(True)
class TestHitList(KH2TestBase):
options = {
"Goal": 2,
}
def testEverything(self):
self.collect_all_but([ItemName.Bounty])
self.assertBeatable(True)