From 956bb2a2a3dbc1913a07f53b4cb9a5318ce0534c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Abdelkader=20Mart=C3=ADnez=20P=C3=A9rez?= Date: Wed, 21 Aug 2019 11:29:16 +0200 Subject: [PATCH] Missing steps --- spec/test/features/steps/steps.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/spec/test/features/steps/steps.py b/spec/test/features/steps/steps.py index 0eb81bc..3b4b869 100644 --- a/spec/test/features/steps/steps.py +++ b/spec/test/features/steps/steps.py @@ -175,3 +175,23 @@ def step_impl(context): f"{Env.KAPOW_CONTROLAPI_URL}/routes", headers={"Content-Type": "application/json"}, 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')