mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-11 01:41:05 +00:00
12 lines
285 B
Python
12 lines
285 B
Python
|
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"
|