mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 10:11:52 +00:00
* Backport RedisStorage, deep-linking * Allow prereleases for aioredis * Bump dependencies * Correctly skip Redis tests on Windows * Reformat tests code and bump Makefile
25 lines
758 B
Python
25 lines
758 B
Python
from typing import Any
|
|
|
|
import pytest
|
|
|
|
from aiogram.dispatcher.handler import ChosenInlineResultHandler
|
|
from aiogram.types import ChosenInlineResult, User
|
|
|
|
|
|
class TestChosenInlineResultHandler:
|
|
@pytest.mark.asyncio
|
|
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)
|