mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Fix python3 Exception message attribute not found.
This commit is contained in:
@ -77,6 +77,16 @@ def test_send_file():
|
||||
assert ret_msg.message_id
|
||||
|
||||
|
||||
def test_send_file_exception():
|
||||
tb = telebot.TeleBot(TOKEN)
|
||||
try:
|
||||
ret_msg = tb.send_document(CHAT_ID, None)
|
||||
assert False
|
||||
except Exception as e:
|
||||
print(e)
|
||||
assert True
|
||||
|
||||
|
||||
def test_send_photo_by_id():
|
||||
photo_id = 'AgADBQADTKgxG8YifgbcWQAB7Da9yYIx1rEyAAT-HYJ3CrJEqdA2AQABAg'
|
||||
tb = telebot.TeleBot(TOKEN)
|
||||
|
Reference in New Issue
Block a user