refactor(project_management): Model Functional Test Suite re-written to Pytest for model Project
ref: #938 #934
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_project
|
||||||
|
class ProjectModelTestCases(
|
||||||
|
CenturionAbstractModelInheritedCases
|
||||||
|
):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ProjectModelInheritedCases(
|
||||||
|
ProjectModelTestCases,
|
||||||
|
):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.module_project_management
|
||||||
|
class ProjectModelPyTest(
|
||||||
|
ProjectModelTestCases,
|
||||||
|
):
|
||||||
|
pass
|
Reference in New Issue
Block a user