refactor(itam): Model Functional Test Suite re-written to Pytest for model Software
ref: #925 #924
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_software
|
||||||
|
class SoftwareModelTestCases(
|
||||||
|
CenturionAbstractModelInheritedCases
|
||||||
|
):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class SoftwareModelInheritedCases(
|
||||||
|
SoftwareModelTestCases,
|
||||||
|
):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.module_itam
|
||||||
|
class SoftwareModelPyTest(
|
||||||
|
SoftwareModelTestCases,
|
||||||
|
):
|
||||||
|
pass
|
Reference in New Issue
Block a user