aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario/status.py
blob: dae6443839a29e2bd1a863b6df88759ffa48a12e (plain)
1
2
3
4
5
6
7
8
9
10
11
from onaptests.scenario.scenario_base import ScenarioBase
from onaptests.steps.cloud.check_status import CheckNamespaceStatusStep


class Status(ScenarioBase):
    """Retrieve status of Kubernetes resources in the nemaspace."""

    def __init__(self, **kwargs):
        """Init the testcase."""
        super().__init__('status', **kwargs)
        self.test = CheckNamespaceStatusStep()