refactor(itam): Model Functional Test Suite re-written to Pytest for model Software

ref: #925 #924
This commit is contained in:
2025-08-02 11:32:26 +09:30
parent cf09a15690
commit 7fb56d87d6

View File

@ -0,0 +1,28 @@
import pytest
from core.tests.functional.centurion_abstract.test_functional_centurion_abstract_model import (
CenturionAbstractModelInheritedCases
)
@pytest.mark.model_software
class SoftwareModelTestCases(
CenturionAbstractModelInheritedCases
):
pass
class SoftwareModelInheritedCases(
SoftwareModelTestCases,
):
pass
@pytest.mark.module_itam
class SoftwareModelPyTest(
SoftwareModelTestCases,
):
pass