mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 10:11:52 +00:00
Add support of Bot API 4.7. Bump version
This commit is contained in:
parent
4cb9697cb4
commit
33003f2026
167 changed files with 996 additions and 504 deletions
27
tests/test_api/test_methods/test_get_my_commands.py
Normal file
27
tests/test_api/test_methods/test_get_my_commands.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
from typing import List
|
||||
|
||||
import pytest
|
||||
|
||||
from aiogram.api.methods import GetMyCommands, Request
|
||||
from aiogram.api.types import BotCommand
|
||||
from tests.mocked_bot import MockedBot
|
||||
|
||||
|
||||
class TestGetMyCommands:
|
||||
@pytest.mark.asyncio
|
||||
async def test_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(GetMyCommands, ok=True, result=None)
|
||||
|
||||
response: List[BotCommand] = await GetMyCommands()
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "getMyCommands"
|
||||
assert response == prepare_result.result
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_bot_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(GetMyCommands, ok=True, result=None)
|
||||
|
||||
response: List[BotCommand] = await bot.get_my_commands()
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "getMyCommands"
|
||||
assert response == prepare_result.result
|
||||
Loading…
Add table
Add a link
Reference in a new issue