mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-26 17:21:00 +00:00
14 lines
301 B
Python
14 lines
301 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.mark.django_db
|
||
|
def test_create(api_client):
|
||
|
"""
|
||
|
Tests creating an app
|
||
|
"""
|
||
|
response = api_client.post(
|
||
|
"/api/v1/apps", {"client_name": "test", "redirect_uris": ""}
|
||
|
)
|
||
|
assert response.status_code == 200
|
||
|
assert response.json()["name"] == "test"
|