2023-06-08 05:17:53 +02:00
|
|
|
#!/usr/bin/env python3
|
2023-06-08 10:54:36 +02:00
|
|
|
"""Test App index"""
|
2023-06-08 05:17:53 +02:00
|
|
|
|
2023-06-13 11:24:39 +02:00
|
|
|
def test_index_page(client):
|
2023-06-08 10:54:36 +02:00
|
|
|
"""Test index path"""
|
2023-06-08 05:17:53 +02:00
|
|
|
response = client.get("/")
|
|
|
|
assert b"Hello Fediverse!" in response.data
|