diff --git a/tests/functional/test_main.py b/tests/functional/test_main.py index 7a9c305..af028b0 100644 --- a/tests/functional/test_main.py +++ b/tests/functional/test_main.py @@ -14,4 +14,9 @@ def test_about_page(client): response = client.get("/about") assert response.status_code == 200 #An example for future implementations - assert b"PGImporter" in response.data \ No newline at end of file + assert b"PGImporter" in response.data + +def test_config_page(client): + response = client.get("/configs") + assert response.status_code == 200 + assert b"Configuration" in response.data \ No newline at end of file