15 lines
323 B
Python
15 lines
323 B
Python
|
|
import pytest
|
||
|
|
|
||
|
|
from diários_oficiais_alems.users.models import User
|
||
|
|
from diários_oficiais_alems.users.tests.factories import UserFactory
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture(autouse=True)
|
||
|
|
def _media_storage(settings, tmpdir) -> None:
|
||
|
|
settings.MEDIA_ROOT = tmpdir.strpath
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture
|
||
|
|
def user(db) -> User:
|
||
|
|
return UserFactory()
|