behave-framework/features/steps/demo.py
2020-10-09 18:34:54 +01:00

17 lines
259 B
Python

from behave import then, when, given
@given('A sentence')
def step_impl(context):
return True
@when('The sentence is inspected')
def step_impl(context):
return True
@then('The word "the" should be found')
def step_impl(context):
return True