aiogram/tests/test_handler/test_inline_query.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

23 lines
692 B
Python

from typing import Any
from aiogram.handlers import InlineQueryHandler
from aiogram.types import InlineQuery, User
class TestCallbackQueryHandler:
async def test_attributes_aliases(self):
event = InlineQuery(
id="query",
from_user=User(id=42, is_bot=False, first_name="Test"),
query="query",
offset="0",
)
class MyHandler(InlineQueryHandler):
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)