diff options
author | Micha? Jagie??o <michal.jagiello@t-mobile.pl> | 2023-08-07 13:06:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-08-07 13:06:39 +0000 |
commit | f79b8e825e0e3cbde157e29a3225f9357e4198bd (patch) | |
tree | 72494a6d436ce591b54cf621ccec4c68f8154ed7 /src/onaptests/scenario/basic_cds.py | |
parent | be6ea937c20fb6ba83d6c7b35f6f5677f9a355cc (diff) | |
parent | 4bccbde3060931c8fcf61fbf8b61db4a85b3200e (diff) |
Merge "Change cleanup process of tests"
Diffstat (limited to 'src/onaptests/scenario/basic_cds.py')
-rw-r--r-- | src/onaptests/scenario/basic_cds.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/onaptests/scenario/basic_cds.py b/src/onaptests/scenario/basic_cds.py new file mode 100644 index 0000000..9cb4a54 --- /dev/null +++ b/src/onaptests/scenario/basic_cds.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python +"""Simple CDS blueprint erichment test scenario.""" +from onaptests.scenario.scenario_base import ScenarioBase +from onaptests.steps.onboard.cds import CbaEnrichStep + + +class CDSBlueprintEnrichment(ScenarioBase): + """Enrich simple blueprint using CDS blueprintprocessor.""" + + def __init__(self, **kwargs): + """Init CDS blueprint enrichment use case.""" + super().__init__('basic_cds', **kwargs) + self.test = CbaEnrichStep() |