mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
10 lines
189 B
Python
10 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
|