mirror of
https://github.com/BlackWallTeam/Backend.git
synced 2024-11-22 08:46:34 +03:00
15 lines
304 B
Python
15 lines
304 B
Python
|
import pytest
|
||
|
|
||
|
from real_estate_search.users.models import User
|
||
|
from real_estate_search.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()
|