summaryrefslogtreecommitdiffstats
path: root/tests/api/test_instance.py
blob: 9fd0af236a749a64d9aee25810cea5d8b32c21fc (plain)
1
2
3
4
5
6
7
8
9
10
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"