mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 18:01:04 +00:00
24 lines
768 B
Python
24 lines
768 B
Python
from typing import Any
|
|
|
|
from aiogram.handlers import CallbackQueryHandler
|
|
from aiogram.types import CallbackQuery, User
|
|
|
|
|
|
class TestCallbackQueryHandler:
|
|
async def test_attributes_aliases(self):
|
|
event = CallbackQuery(
|
|
id="chosen",
|
|
from_user=User(id=42, is_bot=False, first_name="Test"),
|
|
data="test",
|
|
chat_instance="test",
|
|
)
|
|
|
|
class MyHandler(CallbackQueryHandler):
|
|
async def handle(self) -> Any:
|
|
assert self.event == event
|
|
assert self.from_user == self.event.from_user
|
|
assert self.callback_data == self.event.data
|
|
assert self.message == self.message
|
|
return True
|
|
|
|
assert await MyHandler(event)
|