mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-27 03:54:02 +03:00
15 lines
328 B
Python
15 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()
|