Missing steps

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2019-08-21 11:29:16 +02:00
parent e1590df418
commit 956bb2a2a3
+20
View File
@@ -175,3 +175,23 @@ def step_impl(context):
f"{Env.KAPOW_CONTROLAPI_URL}/routes", f"{Env.KAPOW_CONTROLAPI_URL}/routes",
headers={"Content-Type": "application/json"}, headers={"Content-Type": "application/json"},
data=context.text) data=context.text)
@when('I delete the first route inserted')
def step_impl(context):
raise NotImplementedError('STEP: When I delete the first route inserted')
@when('I delete the last route inserted')
def step_impl(context):
raise NotImplementedError('STEP: When I delete the last route inserted')
@when('I delete the second route inserted')
def step_impl(context):
raise NotImplementedError('STEP: When I delete the second route inserted')
@when('I try to insert with this JSON document')
def step_impl(context):
raise NotImplementedError('STEP: When I try to insert with this JSON document')