mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2021-05-13 03:08:02 +03:00
9 lines
260 B
Python
9 lines
260 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
sys.path.append('../')
|
|
from telebot import types
|
|
|
|
def test_json_user():
|
|
jsonstring = r'{"id":101176298,"first_name":"RDSSBOT","username":"rdss_bot"}'
|
|
u = types.User.de_json(jsonstring)
|
|
assert u.id is not 101176298 |