mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
24 lines
917 B
Python
24 lines
917 B
Python
import pytest
|
|
|
|
from aiogram.api.methods import PromoteChatMember, Request
|
|
from tests.mocked_bot import MockedBot
|
|
|
|
|
|
class TestPromoteChatMember:
|
|
@pytest.mark.asyncio
|
|
async def test_method(self, bot: MockedBot):
|
|
prepare_result = bot.add_result_for(PromoteChatMember, ok=True, result=True)
|
|
|
|
response: bool = await PromoteChatMember(chat_id=-42, user_id=42)
|
|
request: Request = bot.get_request()
|
|
assert request.method == "promoteChatMember"
|
|
assert response == prepare_result.result
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_bot_method(self, bot: MockedBot):
|
|
prepare_result = bot.add_result_for(PromoteChatMember, ok=True, result=True)
|
|
|
|
response: bool = await bot.promote_chat_member(chat_id=-42, user_id=42)
|
|
request: Request = bot.get_request()
|
|
assert request.method == "promoteChatMember"
|
|
assert response == prepare_result.result
|