SouthFox
d015451e55
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
7 lines
184 B
Python
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
|