pywright-cucumber/features/steps/example.py
Greg Gauthier 8749d7ab37
All checks were successful
Pylint / build (3.12) (push) Successful in 19s
initial commit
2024-07-24 21:25:00 +01:00

20 lines
474 B
Python

# 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