refactor(project_management): Model Functional Test Suite re-written to Pytest for model ProjectType

ref: #938 #937
This commit is contained in:
2025-08-04 16:09:26 +09:30
parent d0effd582a
commit 1640910305

View File

@ -0,0 +1,28 @@
import pytest
from core.tests.functional.centurion_abstract.test_functional_centurion_abstract_model import (
CenturionAbstractModelInheritedCases
)
@pytest.mark.model_projecttype
class ProjectTypeModelTestCases(
CenturionAbstractModelInheritedCases
):
pass
class ProjectTypeModelInheritedCases(
ProjectTypeModelTestCases,
):
pass
@pytest.mark.module_project_management
class ProjectTypeModelPyTest(
ProjectTypeModelTestCases,
):
pass