forked from Behat/Gherkin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Behat#117 simple merging function was implemented
- Loading branch information
Showing
4 changed files
with
49 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 13 additions & 8 deletions
21
tests/Behat/Gherkin/Fixtures/features/outline_with_multiple_examples.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
Feature: Unsubstituted argument placeholder | ||
|
||
Scenario Outline: See Annual Leave Details (as Management & Human Resource) | ||
Given the <role> exist in the system | ||
Scenario Outline: See Annual Leave Details (as Management & Human Resource) | ||
Given the <role> exist in the system | ||
|
||
Examples: | ||
| role | | ||
| HUMAN RESOURCE | | ||
Examples: | ||
| role | name | | ||
| HUMAN RESOURCE | abc | | ||
|
||
Examples: | ||
| role | | ||
| MANAGER | | ||
Examples: | ||
| role | name | | ||
| MANAGER | cde | | ||
|
||
Examples: | ||
| role | name | | ||
| CEO | qqq | | ||
| CTO | xxx | |