Tests: assign the world to WorldTestBase, and a default player field (#2385)

* Tests: assign the World to WorldTestBase and add a player field (because I like typing self.player far more than random 1's all over the place)

* more accurate docstring for world and multiworld

* use self.player within the class
This commit is contained in:
Aaron Wagener
2024-02-15 16:49:52 -06:00
committed by GitHub
parent 9805bf92e4
commit 3869a25944
5 changed files with 37 additions and 28 deletions

View File

@@ -12,5 +12,5 @@ class LocationsTest(MessengerTestBase):
return False
def test_locations_exist(self) -> None:
for location in self.multiworld.worlds[1].location_name_to_id:
for location in self.world.location_name_to_id:
self.assertIsInstance(self.multiworld.get_location(location, self.player), MessengerLocation)