mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-11 02:06:34 +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()
|