File diff suppressed because it is too large
Load Diff
@ -1,5 +1,7 @@
|
||||
import pytest
|
||||
|
||||
from django.db import models
|
||||
|
||||
from core.tests.unit.centurion_abstract.test_unit_centurion_abstract_model import (
|
||||
CenturionAbstractModelTestCases,
|
||||
CenturionAbstractModelInheritedCases,
|
||||
@ -94,6 +96,14 @@ class CenturionSubAbstractModelPyTest(
|
||||
def parameterized_class_attributes(self):
|
||||
|
||||
return {
|
||||
'page_layout': {
|
||||
'type': models.NOT_PROVIDED,
|
||||
'value': models.NOT_PROVIDED,
|
||||
},
|
||||
'table_fields': {
|
||||
'type': models.NOT_PROVIDED,
|
||||
'value': models.NOT_PROVIDED,
|
||||
},
|
||||
'model_tag': {
|
||||
'type': type(None),
|
||||
'value': None,
|
||||
|
16
app/core/tests/unit/mixin_centurion/conftest.py
Normal file
16
app/core/tests/unit/mixin_centurion/conftest.py
Normal file
@ -0,0 +1,16 @@
|
||||
import pytest
|
||||
|
||||
|
||||
|
||||
@pytest.fixture( scope = 'class')
|
||||
def model(mixin_centurion):
|
||||
|
||||
yield mixin_centurion
|
||||
|
||||
|
||||
@pytest.fixture( scope = 'class', autouse = True)
|
||||
def model_kwargs(request):
|
||||
|
||||
request.cls.kwargs_create_item = {}
|
||||
|
||||
yield {}
|
1185
app/core/tests/unit/mixin_centurion/test_unit_centurion_mixin.py
Normal file
1185
app/core/tests/unit/mixin_centurion/test_unit_centurion_mixin.py
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user