opensymbiose / tests /test_main.py
corentinm7's picture
Upload folder using huggingface_hub
1dc3303 verified
raw
history blame contribute delete
204 Bytes
from opensymbiose.main import hello_world
def test_hello_world():
"""Test that hello_world prints the expected message."""
output = hello_world()
assert output == "Hello from OpenSymbiose!"