COSCUP-ap-demo/tests/test_index.py
SouthFox e427290f77
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
[refactor] rename test name
2023-06-13 17:24:39 +08:00

7 lines
179 B
Python

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