mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
15 lines
513 B
Python
15 lines
513 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_verify_credentials(api_client, identity):
|
|
response = api_client.get("/api/v1/accounts/verify_credentials").json()
|
|
assert response["id"] == str(identity.pk)
|
|
assert response["username"] == identity.username
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_account_search(api_client, identity):
|
|
response = api_client.get("/api/v1/accounts/search?q=test").json()
|
|
assert response[0]["id"] == str(identity.pk)
|
|
assert response[0]["username"] == identity.username
|