aiogram/tests/test_api/test_methods/test_log_out.py

12 lines
342 B
Python
Raw Permalink Normal View History

from aiogram.methods import LogOut
from tests.mocked_bot import MockedBot
class TestLogOut:
async def test_bot_method(self, bot: MockedBot):
prepare_result = bot.add_result_for(LogOut, ok=True, result=True)
response: bool = await bot.log_out()
bot.get_request()
assert response == prepare_result.result