mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 18:19:34 +00:00
Enable Python 3.10 for tests (#719)
* Try to test on Python 3.10 * Prevent to YAML type cast * Bump poetry * Removed async_lru * Disable fail-fast on tests * Fixed typing * Added patch-notes
This commit is contained in:
parent
99c99cec78
commit
7405db2ad3
11 changed files with 36 additions and 81 deletions
|
|
@ -30,25 +30,6 @@ class TestGetMe:
|
|||
assert response == prepare_result.result
|
||||
|
||||
async def test_me_property(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(
|
||||
GetMe, ok=True, result=User(id=42, is_bot=False, first_name="User")
|
||||
)
|
||||
|
||||
response: User = await bot.me()
|
||||
request: Request = bot.get_request()
|
||||
|
||||
assert isinstance(response, User)
|
||||
assert request.method == "getMe"
|
||||
assert request.data == {}
|
||||
assert response == prepare_result.result
|
||||
|
||||
response2: User = await bot.me()
|
||||
assert response2 == response
|
||||
|
||||
response3: User = await bot.me()
|
||||
assert response3 == response
|
||||
assert response2 == response3
|
||||
|
||||
cache_info = bot.me.cache_info()
|
||||
assert cache_info.hits == 2
|
||||
assert cache_info.misses == 1
|
||||
assert response == bot._me
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue