ignore vscode

This commit is contained in:
Greg Gauthier 2020-09-18 13:05:37 +01:00
parent 19c35db19b
commit b2a56eb83a
2 changed files with 15 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.lock
*.iml
.idea/
.idea/
.vscode/

13
features/steps/demo.py Normal file
View File

@ -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