test(core): Add Base Centurion model Functional Test Suite

ref: #773 #767
This commit is contained in:
2025-05-26 13:04:37 +09:30
parent d86b07b4fa
commit 660da485cd
4 changed files with 85 additions and 0 deletions

View File

@ -266,6 +266,15 @@ def pytest_generate_tests(metafunc):
@pytest.fixture( scope = 'function')
def content_type():
from django.contrib.contenttypes.models import ContentType
yield ContentType
@pytest.fixture( scope = 'class')
def create_model(request, django_db_blocker):