mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 18:19:34 +00:00
* Move packages * Added changelog * Update examples/echo_bot.py Co-authored-by: Oleg A. <t0rr@mail.ru> * Rename `handler` -> `handlers` * Update __init__.py Co-authored-by: Oleg A. <t0rr@mail.ru>
27 lines
754 B
Python
27 lines
754 B
Python
from typing import Any
|
|
|
|
import pytest
|
|
|
|
from aiogram.handlers import PreCheckoutQueryHandler
|
|
from aiogram.types import PreCheckoutQuery, User
|
|
|
|
pytestmark = pytest.mark.asyncio
|
|
|
|
|
|
class TestPreCheckoutQueryHandler:
|
|
async def test_attributes_aliases(self):
|
|
event = PreCheckoutQuery(
|
|
id="query",
|
|
from_user=User(id=42, is_bot=False, first_name="Test"),
|
|
currency="BTC",
|
|
total_amount=7,
|
|
invoice_payload="payload",
|
|
)
|
|
|
|
class MyHandler(PreCheckoutQueryHandler):
|
|
async def handle(self) -> Any:
|
|
assert self.event == event
|
|
assert self.from_user == self.event.from_user
|
|
return True
|
|
|
|
assert await MyHandler(event)
|