summaryrefslogtreecommitdiffstats
path: root/tests/api/test_accounts.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api/test_accounts.py')
-rw-r--r--tests/api/test_accounts.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/api/test_accounts.py b/tests/api/test_accounts.py
new file mode 100644
index 0000000..6ca37ae
--- /dev/null
+++ b/tests/api/test_accounts.py
@@ -0,0 +1,12 @@
+import pytest
+
+
+@pytest.mark.django_db
+def test_verify_credentials(api_token, identity, client):
+ response = client.get(
+ "/api/v1/accounts/verify_credentials",
+ HTTP_AUTHORIZATION=f"Bearer {api_token.token}",
+ HTTP_ACCEPT="application/json",
+ ).json()
+ assert response["id"] == str(identity.pk)
+ assert response["username"] == identity.username