mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-15 01:46:36 +03:00
15 lines
288 B
Python
15 lines
288 B
Python
|
import pytest
|
||
|
|
||
|
from passfinder.users.models import User
|
||
|
from passfinder.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()
|