Merge branch 'develop'

This commit is contained in:
eternnoir 2015-07-23 09:16:44 +08:00
commit 893b414e33
2 changed files with 11 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class TeleBot:
if not none_stop:
self.__stop_polling.set()
logger.info("TeleBot: Exception occurred. Stopping.")
logger.error(e.message)
logger.error(e)
logger.info('TeleBot: Stopped polling.')

View File

@ -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)