Skip to content

Commit da5a3aa

Browse files
committed
Testing complex argument names
Can have issues due to rails mangling parameter names
1 parent 4b3e24b commit da5a3aa

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

test/gherkin/identity.feature

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ Feature: Identity feature
33
Given I run identity function with 1
44
Then I will get result 1
55

6-
Scenario Outline: Multiple identity tests for <arg> and <result> with "Some quoutes"
7-
When I run identity function with <arg>
8-
Then I will get result <result> every time
6+
Scenario Outline: Multiple identity tests for <First Arg> and <Second Arg> with "Some quoutes"
7+
When I run identity function with <First Arg>
8+
Then I will get result <Second Arg> every time
99

1010
Examples:
1111

12-
| arg | result |
12+
| First Arg | Second Arg |
1313
| "First Item" | "First Item" |
14-
| "Second Item" | "Second 123" |
14+
| "Second Item" | "Second 123" |
1515
| "Third Item" | "Third Item" |
1616

1717
Examples:
1818

19-
| arg | result |
19+
| First Arg | Second Arg |
2020
| "Second Part" | "Second Part" |
2121
| "Failure" | "That would fail" |
2222

0 commit comments

Comments
 (0)