aiogram/tests/test_nothing.py
2019-11-15 12:44:24 +02:00

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