10 lines
154 B
Python
10 lines
154 B
Python
|
import pytest
|
||
|
|
||
|
from articles.models import User
|
||
|
|
||
|
|
||
|
@pytest.fixture()
|
||
|
@pytest.mark.django_db
|
||
|
def author():
|
||
|
return User.objects.create_user("gaugendre")
|