diff --git a/tests/test_index.py b/tests/test_index.py new file mode 100644 index 0000000..1ab87a7 --- /dev/null +++ b/tests/test_index.py @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: GPL-3.0 +import os + +def test_index_html(app, client): + res = client.get('/index.html') + assert res.status_code == 200 + + +def test_index_slash(app, client): + res = client.get('/') + assert res.status_code == 200