aiogram/tests/test_handler/test_chosen_inline_result.py
Alex Root Junior 730485e43a
Added full support of Bot API 6.4 (#1088)
* Remove warnings about pytest asyncio mode

* Update Bot API to 6.4

* Bump version

* Added changelog

* Update translations
2022-12-30 22:44:25 +02:00

22 lines
708 B
Python

from typing import Any
from aiogram.handlers import ChosenInlineResultHandler
from aiogram.types import ChosenInlineResult, User
class TestChosenInlineResultHandler:
async def test_attributes_aliases(self):
event = ChosenInlineResult(
result_id="chosen",
from_user=User(id=42, is_bot=False, first_name="Test"),
query="test",
)
class MyHandler(ChosenInlineResultHandler):
async def handle(self) -> Any:
assert self.event == event
assert self.from_user == self.event.from_user
assert self.query == self.event.query
return True
assert await MyHandler(event)