aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/features/steps/tutorial.py
blob: 94cb6d861e12c51e314bed61a59b573d425a054c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
from behave import *

@given('we have behave installed')
def step_impl(context):
    pass

@when('we implement a test')
def step_impl(context):
    assert True is not False

@then('behave will test it for us!')
def step_impl(context):
    assert context.failed is False