Skip to content
This repository was archived by the owner on Jun 12, 2024. It is now read-only.

Commit 46c48a2

Browse files
ramreddyapmyjavec
authored andcommitted
Updated scenarios
Signed-off-by: Ram Reddy Amanaganti <[email protected]>
1 parent b8a4cdd commit 46c48a2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

features/deployment.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Feature: Manage deployments
33
Scenario: Try retrieve a deployment that does not exist
44
Given A deployment called fog does not exist
55
When The user attempts to retrieve the deployment fog
6-
Then returns None
6+
Then None is returned for the deployment
77

88

99
Scenario: Create a deployment and wait for it to become ready

features/namespace.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Feature: Interact with the Namespace API
33
Scenario: Try retrieve a namespace that does not exist
44
Given a namespace called rain does not exist
55
When the user attempts to retrieve the namespace rain
6-
Then None is returned
6+
Then None is returned for the namespace
77

88
Scenario: Create a namespace and check it exists
99
Given a namespace called washington does not exist

features/steps/deployment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def step_impl(context, deployment_name):
1515
context.get_resp = deployment.get(context.k8s_v1_apps_client, deployment_name)
1616

1717

18-
@then(u"returns None")
18+
@then(u"None is returned for the deployment")
1919
def step_impl(context):
2020
assert context.get_resp is None, "Did not return None"
2121

features/steps/namespace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def step_impl(context):
1414
context.get_rain_resp = namespace.get(context.k8s_v1_core_client, "rain")
1515

1616

17-
@then(u"None is returned")
17+
@then(u"None is returned for the namespace")
1818
def step_impl(context):
1919
assert context.get_rain_resp is None, "Did not return None"
2020

0 commit comments

Comments
 (0)