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

ref: #938 #936
This commit is contained in:
2025-08-04 15:45:02 +09:30
parent 4045f0cffb
commit 62da0f8c7a

View File

@ -0,0 +1,28 @@
import pytest
from core.tests.functional.centurion_abstract.test_functional_centurion_abstract_model import (
CenturionAbstractModelInheritedCases
)
@pytest.mark.model_projectstate
class ProjectStateModelTestCases(
CenturionAbstractModelInheritedCases
):
pass
class ProjectStateModelInheritedCases(
ProjectStateModelTestCases,
):
pass
@pytest.mark.module_project_management
class ProjectStateModelPyTest(
ProjectStateModelTestCases,
):
pass