refactor(itim): Model Functional Test Suite re-written to Pytest for model Port
ref: #932 #930
This commit is contained in:
28
app/itim/tests/functional/port/test_functional_port_model.py
Normal file
28
app/itim/tests/functional/port/test_functional_port_model.py
Normal file
@ -0,0 +1,28 @@
|
||||
import pytest
|
||||
|
||||
from core.tests.functional.centurion_abstract.test_functional_centurion_abstract_model import (
|
||||
CenturionAbstractModelInheritedCases
|
||||
)
|
||||
|
||||
|
||||
|
||||
@pytest.mark.model_port
|
||||
class ClusterTypeModelTestCases(
|
||||
CenturionAbstractModelInheritedCases
|
||||
):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
class ClusterTypeModelInheritedCases(
|
||||
ClusterTypeModelTestCases,
|
||||
):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
@pytest.mark.module_itim
|
||||
class ClusterTypeModelPyTest(
|
||||
ClusterTypeModelTestCases,
|
||||
):
|
||||
pass
|
Reference in New Issue
Block a user