9 lines
134 B
Python
9 lines
134 B
Python
|
import pytest
|
||
|
|
||
|
from foxnouns import hello
|
||
|
|
||
|
|
||
|
@pytest.mark.asyncio
|
||
|
async def test_hello():
|
||
|
assert (await hello()) == "Hello world!"
|