20 lines
474 B
Python
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
|