summaryrefslogtreecommitdiffstats
path: root/tests/api/test_instance.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api/test_instance.py')
-rw-r--r--tests/api/test_instance.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/api/test_instance.py b/tests/api/test_instance.py
new file mode 100644
index 0000000..9fd0af2
--- /dev/null
+++ b/tests/api/test_instance.py
@@ -0,0 +1,11 @@
+import pytest
+
+
+@pytest.mark.django_db
+def test_instance(api_token, client):
+ response = client.get(
+ "/api/v1/instance",
+ HTTP_AUTHORIZATION=f"Bearer {api_token.token}",
+ HTTP_ACCEPT="application/json",
+ ).json()
+ assert response["uri"] == "example.com"