(text)
| 521 | |
| 522 | @staticmethod |
| 523 | def create_text_message(text): |
| 524 | params = {'text': text} |
| 525 | chat = types.User(11, False, 'test') |
| 526 | return types.Message(1, None, None, chat, 'text', params, "") |
| 527 | |
| 528 | @staticmethod |
| 529 | def create_message_update(text): |
no outgoing calls
no test coverage detected