(self)
| 320 | assert ret_msg.forward_from |
| 321 | |
| 322 | def test_copy_message(self): |
| 323 | text = 'CI copy_message Test Message' |
| 324 | tb = telebot.TeleBot(TOKEN) |
| 325 | msg = tb.send_message(CHAT_ID, text) |
| 326 | ret_msg = tb.copy_message(CHAT_ID, CHAT_ID, msg.message_id) |
| 327 | assert ret_msg |
| 328 | |
| 329 | def test_forward_message_dis_noti(self): |
| 330 | text = 'CI forward_message Test Message' |
nothing calls this directly
no test coverage detected