mirror of
https://github.com/mistakes-23/backend.git
synced 2024-11-10 18:26:35 +03:00
15 lines
292 B
Python
15 lines
292 B
Python
|
import pytest
|
||
|
|
||
|
from dock_checker.users.models import User
|
||
|
from dock_checker.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()
|