diff --git a/app/itam/tests/functional/operating_system/test_functional_operating_system_model.py b/app/itam/tests/functional/operating_system/test_functional_operating_system_model.py new file mode 100644 index 00000000..87d203d9 --- /dev/null +++ b/app/itam/tests/functional/operating_system/test_functional_operating_system_model.py @@ -0,0 +1,28 @@ +import pytest + +from core.tests.functional.centurion_abstract.test_functional_centurion_abstract_model import ( + CenturionAbstractModelInheritedCases +) + + + +@pytest.mark.model_device +class OperatingSystemModelTestCases( + CenturionAbstractModelInheritedCases +): + pass + + + +class OperatingSystemModelInheritedCases( + OperatingSystemModelTestCases, +): + pass + + + +@pytest.mark.module_itam +class OperatingSystemModelPyTest( + OperatingSystemModelTestCases, +): + pass