You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestCase.py 245B

123456789
  1. import unittest
  2. from million.model.message import Message
  3. class TestCase(unittest.TestCase):
  4. def _message_with_text(self, text: str):
  5. return Message(content=text, sender_name="test", timestamp_ms=0, is_geoblocked_for_viewer=True)