mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Bot API 7.0 tests for DeleteMessages
This commit is contained in:
parent
e697de4df4
commit
f75f3b47a5
1 changed files with 19 additions and 0 deletions
19
tests/test_api/test_methods/test_delete_messages.py
Normal file
19
tests/test_api/test_methods/test_delete_messages.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
from aiogram.methods import DeleteMessages
|
||||
from tests.mocked_bot import MockedBot
|
||||
|
||||
|
||||
class TestDeleteMessages:
|
||||
async def test_bot_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(
|
||||
DeleteMessages,
|
||||
ok=True,
|
||||
result=True,
|
||||
)
|
||||
|
||||
response: bool = await bot.delete_messages(
|
||||
chat_id=42,
|
||||
message_ids=[13, 77],
|
||||
)
|
||||
request = bot.get_request()
|
||||
assert request
|
||||
assert response == prepare_result.result
|
||||
Loading…
Add table
Add a link
Reference in a new issue