The Messenger: Make modules and tests PEP8 (#2276)

* The Messenger: PEP8 module and test names

* fix dumb

* whitespace
This commit is contained in:
Aaron Wagener
2023-10-08 07:33:39 -05:00
committed by GitHub
parent cc2247bfa0
commit 6f9484f375
13 changed files with 65 additions and 71 deletions

View File

@@ -0,0 +1,16 @@
from . import MessengerTestBase
from ..subclasses import MessengerLocation
class LocationsTest(MessengerTestBase):
options = {
"shuffle_shards": "true",
}
@property
def run_default_tests(self) -> bool:
return False
def test_locations_exist(self) -> None:
for location in self.multiworld.worlds[1].location_name_to_id:
self.assertIsInstance(self.multiworld.get_location(location, self.player), MessengerLocation)