21 lines
354 B
Python
21 lines
354 B
Python
import pytest
|
|
|
|
from access.models.tenancy_abstract import TenancyAbstractModel
|
|
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def model_tenancyabstract(request):
|
|
|
|
yield TenancyAbstractModel
|
|
|
|
|
|
@pytest.fixture( scope = 'class')
|
|
def kwargs_tenancyabstract(organization_one):
|
|
|
|
kwargs = {
|
|
'organization': organization_one
|
|
}
|
|
|
|
yield kwargs.copy()
|