mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-20 18:11:52 +00:00
14 lines
328 B
Python
14 lines
328 B
Python
import pytest
|
|
|
|
from {{ cookiecutter.project_slug }}.users.models import User
|
|
from {{ cookiecutter.project_slug }}.users.tests.factories import UserFactory
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def media_storage(settings, tmpdir):
|
|
settings.MEDIA_ROOT = tmpdir.strpath
|
|
|
|
|
|
@pytest.fixture
|
|
def user() -> User:
|
|
return UserFactory()
|