6 lines
106 B
Python
6 lines
106 B
Python
from solution import greet
|
|
|
|
|
|
def test_greet_returns_hello_python():
|
|
assert greet() == "Hello, Python"
|