pywright-cucumber/features/steps/example.py

20 lines
474 B
Python
Raw Normal View History

2024-07-24 20:25:00 +00:00
# pylint: disable=no-name-in-module,unused-argument,comparison-of-constants
from behave import given, when, then
@given('we have behave installed')
def we_have_behave_installed(context):
# it is implied in the capacity to
# run this!
pass
@when('we implement a test')
def we_implement_a_test(context):
assert True is not False
@then('behave will test it for us!')
def behave_will_test_it(context):
assert context.failed is False