Change cleanup process of tests
[testsuite/pythonsdk-tests.git] / src / onaptests / scenario / basic_cds.py
1 #!/usr/bin/env python
2 """Simple CDS blueprint erichment test scenario."""
3 from onaptests.scenario.scenario_base import ScenarioBase
4 from onaptests.steps.onboard.cds import CbaEnrichStep
5
6
7 class CDSBlueprintEnrichment(ScenarioBase):
8     """Enrich simple blueprint using CDS blueprintprocessor."""
9
10     def __init__(self, **kwargs):
11         """Init CDS blueprint enrichment use case."""
12         super().__init__('basic_cds', **kwargs)
13         self.test = CbaEnrichStep()