(self)
| 327 | assert ret_msg |
| 328 | |
| 329 | def test_forward_message_dis_noti(self): |
| 330 | text = 'CI forward_message Test Message' |
| 331 | tb = telebot.TeleBot(TOKEN) |
| 332 | msg = tb.send_message(CHAT_ID, text) |
| 333 | ret_msg = tb.forward_message(CHAT_ID, CHAT_ID, msg.message_id, disable_notification=True) |
| 334 | assert ret_msg.forward_from |
| 335 | |
| 336 | def test_reply_to(self): |
| 337 | text = 'CI reply_to Test Message' |
nothing calls this directly
no test coverage detected