This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #27: fix bug on Scenario Outline
- Loading branch information
1 parent
5970a00
commit 7316a89
Showing
7 changed files
with
44 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Feature: Monkey gathering bananas | ||
|
||
Scenario Outline: Monkey gives a banana to another monkey | ||
When the bonobo takes a banana | ||
And gives this banana to <gorilla> | ||
Then the gorilla is named <gorilla> | ||
|
||
Examples: | ||
| gorilla | | ||
| Harambe | | ||
| Max | |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
Feature: Donkeys sharing carots | ||
|
||
Scenario: Monkey gives a banana to another monkey | ||
When the bonobo takes a banana | ||
And gives this banana to Harambe | ||
Then the gorilla has the banana | ||
|
||
Scenario: Monkey gives a banana to another monkey | ||
Then the gorilla has the banana | ||
Scenario: Monkey gives a banana to another monkey | ||
When the bonobo takes a banana | ||
And gives this banana to Harambe | ||
Then the gorilla has the banana | ||
|
||
Scenario: Monkey gives a banana to another monkey | ||
Then the gorilla has the banana |
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,6 +1,6 @@ | ||
Feature: Monkey gathering bananas | ||
|
||
Scenario: Monkey gives a banana to another monkey | ||
When the bonobo takes a banana | ||
And gives this banana to Harambe | ||
Then the gorilla has the banana | ||
Scenario: Monkey gives a banana to another monkey | ||
When the bonobo takes a banana | ||
And gives this banana to Harambe | ||
Then the gorilla has the banana |
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