diff --git a/.gitignore b/.gitignore index 8223859..9822968 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.lock *.iml -.idea/ \ No newline at end of file +.idea/ +.vscode/ \ No newline at end of file diff --git a/features/steps/demo.py b/features/steps/demo.py new file mode 100644 index 0000000..f9cc79f --- /dev/null +++ b/features/steps/demo.py @@ -0,0 +1,13 @@ +@given(u'A sentence') +def step_impl(context): + return True + + +@when(u'The sentence is inspected') +def step_impl(context): + return True + + +@then(u'The word "the" should be found') +def step_impl(context): + return True \ No newline at end of file