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