mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
13 lines
379 B
Python
13 lines
379 B
Python
|
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
|