We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61dae19 commit f4b1e6cCopy full SHA for f4b1e6c
tests/unit/app/endpoints/test_root.py
@@ -0,0 +1,9 @@
1
+from app.endpoints.root import root_endpoint_handler
2
+from configuration import AppConfig
3
+
4
5
+def test_root_endpoint(mocker):
6
+ """Test the root endpoint handler."""
7
+ request = None
8
+ response = root_endpoint_handler(request)
9
+ assert response is not None
0 commit comments