COSCUP-ap-demo/tests/test_index.py
SouthFox d015451e55
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
[lint] fix lint
2023-06-08 16:54:36 +08:00

7 lines
184 B
Python

#!/usr/bin/env python3
"""Test App index"""
def test_request_example(client):
"""Test index path"""
response = client.get("/")
assert b"Hello Fediverse!" in response.data