-
Notifications
You must be signed in to change notification settings - Fork 32
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 #11 from benson/logical-and-tags
Add ability to use logical AND for tags
- Loading branch information
Showing
4 changed files
with
73 additions
and
8 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,27 @@ | ||
Feature: Testing tags | ||
As a grunt-cucumber-js dev | ||
I want a Testing.feature file with tags | ||
So that I can test the tag functionality of cucumber-js-task | ||
|
||
@wip | ||
Scenario: Tagged wip | ||
Given I have the number 1 and 3 | ||
When I add them together | ||
Then I should have 4 | ||
|
||
@tag | ||
Scenario: Tagged tag | ||
Given I have the number 1 and 3 | ||
When I add them together | ||
Then I should have 4 | ||
|
||
Scenario: No tags | ||
Given I have the number 1 and 3 | ||
When I add them together | ||
Then I should have 4 | ||
|
||
@wip @tag | ||
Scenario: Tagged wip and tag | ||
Given I have the number 1 and 3 | ||
When I add them together | ||
Then I should have 4 |
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