Files
KintoneAppBuilder/backend/app/tests/test_tasks.py

7 lines
159 B
Python

from app import tasks
def test_example_task():
task_output = tasks.example_task("Hello World")
assert task_output == "test task returns Hello World"