aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/conftest.py
blob: 8c40fe4d1ca9279d14b4df367660309a04c4bdbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import pytest
from django.test import RequestFactory

from ctrack.organisations.models import AddressType
from ctrack.users.models import User
from ctrack.organisations.models import Organisation, Address
from ctrack.users.tests.factories import (
    UserFactory,
)
from ctrack.organisations.tests.factories import OrganisationFactory, AddressFactory


@pytest.fixture(autouse=True)
def media_storage(settings, tmpdir):
    settings.MEDIA_ROOT = tmpdir.strpath


@pytest.fixture
def user() -> User:
    return UserFactory()


@pytest.fixture
def org() -> Organisation:
    return OrganisationFactory()


@pytest.fixture
def addr() -> Address:
    address_type = AddressType.objects.create(descriptor="Random Type")
    return AddressFactory(type=address_type)


@pytest.fixture
def request_factory() -> RequestFactory:
    return RequestFactory()