Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.pyc

# Numerous always-ignore extensions
###################
*.diff
*.err
*.orig
*.log
*.rej
*.swo
*.swp
*.vi
*~

*.sass-cache
# Folders to ignore
###################
.hg
.svn
.CVS
# OS or Editor folders
###################
.DS_Store
Icon?
Thumbs.db
ehthumbs.db
nbproject
.cache
.project
.settings
.tmproj
*.esproj
*.sublime-project
*.sublime-workspace
# Dreamweaver added files
###################
_notes
dwsync.xml
# Komodo
###################
*.komodoproject
.komodotools
2 changes: 1 addition & 1 deletion pycucumber/tests/helper/features/more_examples.feature
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Feature:
Scenario:
When var:pass
Then var:pass

More Examples:
| input1 | input2 |
| fail | fail |
2 changes: 1 addition & 1 deletion pycucumber/tests/self.feature
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Feature:
And 0 tests should be unimplemented
And 0 tests should be skipped
And 0 tests should be ambiguous

More Examples:
| feature | rule | test_succeed | pass | pass | fail | fail | uimp | uimp | skip | skip | ambig | ambig |
| helper/features/fail_first_given.feature | helper/rules/simple.py | fail | 0 | pass | 1 | fail | 0 | be unimplemented | 7 | be skipped | 0 | be ambiguous |
Expand Down
2 changes: 1 addition & 1 deletion pycucumber/tests/test_desc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Feature: Addition
In order to avoid silly mistakes
As a math idiot
I want to be told the sum of two numbers

Scenario: Add two numbers
Given I have entered 50 into the calculator
And I have entered 70 into the calculator
Expand Down