aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/samples/features/steps/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/samples/features/steps/hello.py')
-rw-r--r--xtesting/samples/features/steps/hello.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/xtesting/samples/features/steps/hello.py b/xtesting/samples/features/steps/hello.py
new file mode 100644
index 00000000..8d780168
--- /dev/null
+++ b/xtesting/samples/features/steps/hello.py
@@ -0,0 +1,16 @@
+from behave import when, then, step
+
+
+class Hello():
+
+ @step('we have behave installed')
+ def step_impl_installation(context):
+ pass
+
+ @when('we implement a test')
+ def step_impl_test(context):
+ assert True is not False
+
+ @then('behave will test it for us!')
+ def step_impl_verify(context):
+ assert context.failed is False