mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-14 13:36:40 +03:00
15 lines
296 B
Python
15 lines
296 B
Python
|
import pytest
|
||
|
|
||
|
from image_markuper.users.models import User
|
||
|
from image_markuper.users.tests.factories import UserFactory
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True)
|
||
|
def media_storage(settings, tmpdir):
|
||
|
settings.MEDIA_ROOT = tmpdir.strpath
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def user(db) -> User:
|
||
|
return UserFactory()
|