Add tests for GetChatGifts, GetUserGifts, RepostStory, and SendMessageDraft methods

This commit is contained in:
JRoot Junior 2026-01-02 01:39:49 +02:00
parent f7574296b0
commit 8ffd714834
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2
4 changed files with 125 additions and 0 deletions

View 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