mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-10 17:31:03 +00:00
7 lines
171 B
Python
7 lines
171 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_instance(api_client):
|
|
response = api_client.get("/api/v1/instance").json()
|
|
assert response["uri"] == "example.com"
|