21 lines
606 B
Python
21 lines
606 B
Python
import json
|
|
|
|
import pytest
|
|
|
|
from django.contrib.auth.models import User
|
|
from django.urls import reverse
|
|
from django_scopes import scopes_disabled
|
|
|
|
from cookbook.models import Keyword, Space
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_user_create(u1_s1,u1_s2):
|
|
r = u1_s1.post(reverse('api:keyword-list'), {'name': 'test', 'space': 1}, content_type='application/json')
|
|
response = json.loads(r.content)
|
|
assert r.status_code == 201
|
|
assert response['name'] == 'test'
|
|
|
|
r = u1_s2.get(reverse('api:keyword-detail', args={response['id']}), content_type='application/json')
|
|
assert r.status_code == 404
|