aboutsummaryrefslogblamecommitdiffstats
path: root/ctrack/conftest.py
blob: d9755f7af70e3fdc4962db98d6f2e8f6a51e3670 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                      
                                                             




                                          












                                        


                                
 


                           
 
 
               

                                        
import pytest
from django.test import RequestFactory

from ctrack.users.models import User
from ctrack.organisations.models import Organisation, Address
from ctrack.users.tests.factories import (
    UserFactory,
    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:
    return AddressFactory()


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