From 7fb56d87d6a50c0758842a93682a8e674dbb4bd6 Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 2 Aug 2025 11:32:26 +0930 Subject: [PATCH] refactor(itam): Model Functional Test Suite re-written to Pytest for model Software ref: #925 #924 --- .../test_functional_software_model.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app/itam/tests/functional/software/test_functional_software_model.py 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