foxnouns/tests/test_hello.py
2024-03-13 17:03:18 +01:00

8 lines
134 B
Python

import pytest
from foxnouns import hello
@pytest.mark.asyncio
async def test_hello():
assert (await hello()) == "Hello world!"