KintoneAppBuilder created

This commit is contained in:
2023-07-10 09:40:49 +09:00
commit 80446a3860
94 changed files with 13622 additions and 0 deletions

View File

View File

@@ -0,0 +1,4 @@
def test_read_main(client):
response = client.get("/api/v1")
assert response.status_code == 200
assert response.json() == {"message": "Hello World"}

View File

@@ -0,0 +1,6 @@
from app import tasks
def test_example_task():
task_output = tasks.example_task("Hello World")
assert task_output == "test task returns Hello World"