-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #467 from radish-bdd/bugfix/tags-in-scenario-outline
Bugfix: tags in scenario outline and loop scenarios
- Loading branch information
Showing
6 changed files
with
61 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Feature: Support Scenario Loop | ||
Radish shall support Scenario Loops. | ||
|
||
@arbitrary_tag | ||
Scenario Loop 2: This is a looped Scenario | ||
Given I have an instable function | ||
When I execute it | ||
Then I expect it to pass |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Feature: Support Scenario Outlines | ||
Radish shall support parsing | ||
of Scenario Outlines with valid Examples | ||
|
||
@arbitrary_tag | ||
Scenario Outline: A Scenario Outline | ||
Given I have the number <x> | ||
And I have the number <y> | ||
When I add them up | ||
Then I expect the sum to be <z> | ||
|
||
Examples: | ||
| x | y | z | | ||
| 1 | 2 | 3 | | ||
| 4 | 5 | 9 | |
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