test(config_management): Model Functional Test Suite re-written to pytest for model ConfigGroup
ref: #908 #905
This commit is contained in:
@ -0,0 +1,28 @@
|
||||
import pytest
|
||||
|
||||
from core.tests.functional.centurion_abstract.test_functional_centurion_abstract_model import (
|
||||
CenturionAbstractModelInheritedCases
|
||||
)
|
||||
|
||||
|
||||
|
||||
@pytest.mark.model_configgroups
|
||||
class ConfigGroupsModelTestCases(
|
||||
CenturionAbstractModelInheritedCases
|
||||
):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
class ConfigGroupsModelInheritedCases(
|
||||
ConfigGroupsModelTestCases,
|
||||
):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
@pytest.mark.module_config_management
|
||||
class ConfigGroupsModelPyTest(
|
||||
ConfigGroupsModelTestCases,
|
||||
):
|
||||
pass
|
Reference in New Issue
Block a user