blob: 966a3e56fc121c47a5cb6d343864e5ff2fcccf44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import pytest
from pyblackbird_cc.users.models import User
from pyblackbird_cc.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()
|