17 lines
344 B
Gherkin
17 lines
344 B
Gherkin
Feature:
|
|
Scenario:
|
|
Given the numbers:
|
|
| Summand | Summand |
|
|
| 1 | 1 |
|
|
When I sum them
|
|
Then I get 2
|
|
|
|
Given a list of proper names:
|
|
| Jakob |
|
|
| Ludwig |
|
|
| Felix |
|
|
| Mendelssohn |
|
|
| Bartholdy |
|
|
When I concatenate them together
|
|
Then the name is "Jakob Ludwig Felix Mendelssohn Bartholdy"
|