mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
11 lines
189 B
Python
11 lines
189 B
Python
|
|
import asyncio
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
|
||
|
|
|
||
|
|
class TestNothing:
|
||
|
|
@pytest.mark.asyncio
|
||
|
|
async def test_nothing(self):
|
||
|
|
result = await asyncio.sleep(1, result=42)
|
||
|
|
assert result == 42
|