mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

* Tests: add a test that created items and locations exist in the datapackage * move FF validation to `assert_generate` and remove test exclusion * test created location addresses are correct * make the assertion proper and more verbose * make item count test ~~a bit faster~~ a lot nicer * 120 blaze it * name test multiworld setup better and fix another over 120 line in FFR
25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
import unittest
|
|
from worlds.AutoWorld import AutoWorldRegister
|
|
|
|
from . import setup_solo_multiworld
|
|
|
|
|
|
class TestImplemented(unittest.TestCase):
|
|
def testCompletionCondition(self):
|
|
"""Ensure a completion condition is set that has requirements."""
|
|
for game_name, world_type in AutoWorldRegister.world_types.items():
|
|
if not world_type.hidden and game_name not in {"ArchipIDLE", "Sudoku"}:
|
|
with self.subTest(game_name):
|
|
multiworld = setup_solo_multiworld(world_type)
|
|
self.assertFalse(multiworld.completion_condition[1](multiworld.state))
|
|
|
|
def testEntranceParents(self):
|
|
"""Tests that the parents of created Entrances match the exiting Region."""
|
|
for game_name, world_type in AutoWorldRegister.world_types.items():
|
|
if not world_type.hidden:
|
|
with self.subTest(game_name):
|
|
multiworld = setup_solo_multiworld(world_type)
|
|
for region in multiworld.regions:
|
|
for exit in region.exits:
|
|
self.assertEqual(exit.parent_region, region)
|