def test_can_be_instantiated(self): """Text can be instantiated""" t1 = Text.of(None) t2 = Text.of_all(None) assert isinstance(t1, Text) assert isinstance(t2, Text)
def answered_by(self, the_actor: Actor) -> str: """ Direct the actor to read off the text of the results message. Args: the_actor: """ return Text.of(RESULTS_MESSAGE).answered_by(the_actor)
def answered_by(self, the_actor): return Text.of(home_page.WELCOME_MESSAGE).answered_by(the_actor)
def answered_by(self, the_actor): return Text.of(RESULTS_MESSAGE).answered_by(the_actor)