| 1 |
Scenario: Eat 5 out of 12 |
| 2 |
Given there are 12 cucumbers |
| 3 |
When I eat 5 cucumbers |
| 4 |
Then I should have 7 cucumbers |
| 5 |
|
| 6 |
Scenario: Eat 5 out of 20 |
| 7 |
Given there are 20 cucumbers |
| 8 |
When I eat 5 cucumbers |
| 9 |
Then I should have 15 cucumbers |
| 10 |
|
| 11 |
# From https://gist.github.com/dogoku/0c024c55ec124355f01472abc70550f5 |
| 12 |
|