refactor(devops): Model Functional Test Suite re-written to Pytest for model SoftwareEnableFeatureFlag

ref: #946 #945
This commit is contained in:
2025-08-07 13:41:53 +09:30
parent 0159fd6ed8
commit 703b6a67b2

View File

@ -0,0 +1,28 @@
import pytest
from core.tests.functional.centurion_abstract.test_functional_centurion_abstract_model import (
CenturionAbstractModelInheritedCases
)
@pytest.mark.model_softwareenablefeatureflag
class SoftwareEnableFeatureFlagModelTestCases(
CenturionAbstractModelInheritedCases
):
pass
class SoftwareEnableFeatureFlagModelInheritedCases(
SoftwareEnableFeatureFlagModelTestCases,
):
pass
@pytest.mark.module_devops
class SoftwareEnableFeatureFlagModelPyTest(
SoftwareEnableFeatureFlagModelTestCases,
):
pass