behave-framework/features/steps/demo.py

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