blob: 9809567fa03f1f370b77020258c3633f78bb4468 [file] [log] [blame]
AlexsJones6614cb52013-11-19 15:14:03 +00001Feature: Example cucumber use
2
3 Scenario Outline: I want to show how cucumber works
4 Given I have <number>
5 When I chose to increase it by <amount>
6 Then I should see <total>
7 Examples: Successful match
8 | number | amount | total |
9 | 2 | 5 | 7 |
10 | 3 | 3 | 6 |
11
12