mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Added full support of Telegram Bot API 9.3 (#1747)
* Added full support of Telegram Bot API 9.3 * Fixed tests that fails * Add tests for `GetChatGifts`, `GetUserGifts`, `RepostStory`, and `SendMessageDraft` methods * Added changelog record
This commit is contained in:
parent
ce4ddb77f4
commit
dcff0f99c7
132 changed files with 2993 additions and 457 deletions
19
tests/test_api/test_methods/test_send_message_draft.py
Normal file
19
tests/test_api/test_methods/test_send_message_draft.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
from aiogram.methods import SendMessageDraft
|
||||
from tests.mocked_bot import MockedBot
|
||||
|
||||
|
||||
class TestSendMessageDraft:
|
||||
async def test_bot_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(
|
||||
SendMessageDraft,
|
||||
ok=True,
|
||||
result=True,
|
||||
)
|
||||
|
||||
response: bool = await bot.send_message_draft(
|
||||
chat_id=42,
|
||||
draft_id=1,
|
||||
text="test draft",
|
||||
)
|
||||
request = bot.get_request()
|
||||
assert response == prepare_result.result
|
||||
Loading…
Add table
Add a link
Reference in a new issue