* 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
8 lines
165 B
Python
8 lines
165 B
Python
from test.TestBase import WorldTestBase
|
|
from .. import MessengerWorld
|
|
|
|
|
|
class MessengerTestBase(WorldTestBase):
|
|
game = "The Messenger"
|
|
world: MessengerWorld
|