(self)
| 278 | assert ret_msg.content_type == 'dice' |
| 279 | |
| 280 | def test_send_message_dis_noti(self): |
| 281 | text = 'CI Test Message' |
| 282 | tb = telebot.TeleBot(TOKEN) |
| 283 | ret_msg = tb.send_message(CHAT_ID, text, disable_notification=True) |
| 284 | assert ret_msg.message_id |
| 285 | |
| 286 | def test_send_message_with_markup(self): |
| 287 | text = 'CI Test Message' |
nothing calls this directly
no test coverage detected