behave-framework/features/steps/demo.py

13 lines
222 B
Python
Raw Normal View History

2020-09-18 12:05:37 +00:00
@given(u'A sentence')
def step_impl(context):
return True
@when(u'The sentence is inspected')
def step_impl(context):
return True
@then(u'The word "the" should be found')
def step_impl(context):
return True