| 38 | |
| 39 | |
| 40 | class GameTestBase: |
| 41 | title = "Python-telegram-bot Test Game" |
| 42 | description = "description" |
| 43 | photo = [PhotoSize("Blah", "ElseBlah", 640, 360, file_size=0)] |
| 44 | text = ( |
| 45 | b"\\U0001f469\\u200d\\U0001f469\\u200d\\U0001f467" |
| 46 | b"\\u200d\\U0001f467\\U0001f431http://google.com" |
| 47 | ).decode("unicode-escape") |
| 48 | text_entities = [MessageEntity(13, 17, MessageEntity.URL)] |
| 49 | animation = Animation("blah", "unique_id", 320, 180, 1) |
| 50 | |
| 51 | |
| 52 | class TestGameWithoutRequest(GameTestBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…