diff --git a/app/itam/tests/functional/software/test_functional_software_model.py b/app/itam/tests/functional/software/test_functional_software_model.py new file mode 100644 index 00000000..4b92c2e7 --- /dev/null +++ b/app/itam/tests/functional/software/test_functional_software_model.py @@ -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