2020-10-09 17:34:54 +00:00
|
|
|
from behave import then, when, given
|
|
|
|
|
|
|
|
|
|
|
|
@given('A sentence')
|
2020-09-18 12:05:37 +00:00
|
|
|
def step_impl(context):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2020-10-09 17:34:54 +00:00
|
|
|
@when('The sentence is inspected')
|
2020-09-18 12:05:37 +00:00
|
|
|
def step_impl(context):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2020-10-09 17:34:54 +00:00
|
|
|
@then('The word "the" should be found')
|
2020-09-18 12:05:37 +00:00
|
|
|
def step_impl(context):
|
2020-10-09 17:34:54 +00:00
|
|
|
return True
|