supervision/test/test_hello.py

6 lines
91 B
Python

from src.hello import hello
def test_hello():
res = hello()
assert res == "World"