foxnouns/tests/test_hello.py

9 lines
134 B
Python
Raw Normal View History

2024-03-13 17:03:18 +01:00
import pytest
from foxnouns import hello
@pytest.mark.asyncio
async def test_hello():
assert (await hello()) == "Hello world!"