forked from Behat/Gherkin
-
Notifications
You must be signed in to change notification settings - Fork 1
Background outline #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dpakach
wants to merge
3
commits into
master
Choose a base branch
from
Background-outline
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
28 changes: 28 additions & 0 deletions
28
tests/Behat/Gherkin/Fixtures/etalons/background_with_outline.yml
This file contains hidden or 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,28 @@ | ||
| feature: | ||
| title: Feature with example in the background | ||
| language: en | ||
| line: 1 | ||
| description: ~ | ||
|
|
||
| background: | ||
| line: 3 | ||
| steps: | ||
| - { keyword_type: Given, type: Given, text: a passing step, line: 4 } | ||
| examples: | ||
| 6: [login, password] | ||
| 7: ['', ''] | ||
| 8: [unknown_user, 'known_pass'] | ||
|
|
||
| scenarios: | ||
| - | ||
| type: outline | ||
| title: Scenario outline without example table | ||
| line: 10 | ||
| steps: | ||
| - { keyword_type: 'Given', type: 'Given', text: 'I browse to the login page', line: 11 } | ||
| - { keyword_type: 'When', type: 'When', text: 'I fill in "login" with "<login>"', line: 12 } | ||
| - { keyword_type: 'When', type: 'And', text: 'I fill in "password" with "<password>"', line: 13 } | ||
| examples: | ||
| 6: [login, password] | ||
| 7: ['', ''] | ||
| 8: [unknown_user, 'known_pass'] |
48 changes: 48 additions & 0 deletions
48
tests/Behat/Gherkin/Fixtures/etalons/background_with_outline_multi.yml
This file contains hidden or 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,48 @@ | ||
| feature: | ||
| title: Feature with example in background and multiple scenarios | ||
| language: en | ||
| line: 1 | ||
| description: ~ | ||
|
|
||
| background: | ||
| line: 3 | ||
| steps: | ||
| - { keyword_type: Given, type: Given, text: a passing step, line: 4 } | ||
| examples: | ||
| 6: [login, password] | ||
| 7: ['', ''] | ||
| 8: [unknown_user, known_pass] | ||
|
|
||
| scenarios: | ||
| - | ||
| type: outline | ||
| title: Scenario outline without example | ||
| line: 10 | ||
| steps: | ||
| - { keyword_type: 'Given', type: 'Given', text: 'I have browsed to login page', line: 11 } | ||
| - { keyword_type: 'When', type: 'When', text: 'I fill in "login" with "<login>"', line: 12 } | ||
| - { keyword_type: 'When', type: 'And', text: 'I fill in "password" with "<password>"', line: 13 } | ||
| examples: | ||
| 6: [ login, password ] | ||
| 7: [ '' , '' ] | ||
| 8: [ unknown_user , known_pass ] | ||
|
|
||
| - type: scenario | ||
| title: A regular scenario | ||
| line: 15 | ||
| steps: | ||
| - { keyword_type: 'Given', type: 'Given', text: 'I have browsed to login page', line: 16 } | ||
| - { keyword_type: 'When', type: 'When', text: 'I fill in "login" with "user"', line: 17 } | ||
| - { keyword_type: 'When', type: 'And', text: 'I fill in "password" with "password"', line: 18 } | ||
|
|
||
| - type: outline | ||
| title: Scenario outline with it's own example table | ||
| line: 20 | ||
| steps: | ||
| - { keyword_type: 'Given', type: 'Given', text: 'I have browsed to login page', line: 21 } | ||
| - { keyword_type: 'When', type: 'When', text: 'I fill in "login" with "<login>"', line: 22 } | ||
| - { keyword_type: 'When', type: 'And', text: 'I fill in "password" with "<password>"', line: 23 } | ||
| examples: | ||
| 25: [ login, password ] | ||
| 26: [ hello, world ] | ||
| 27: [ user , pass ] |
13 changes: 13 additions & 0 deletions
13
tests/Behat/Gherkin/Fixtures/features/background_with_outline.feature
This file contains hidden or 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,13 @@ | ||
| Feature: Feature with example in the background | ||
|
|
||
| Background: | ||
| Given a passing step | ||
| Examples: | ||
| | login | password | | ||
| | | | | ||
| | unknown_user | known_pass | | ||
|
|
||
| Scenario Outline: Scenario outline without example table | ||
| Given I browse to the login page | ||
| When I fill in "login" with "<login>" | ||
| And I fill in "password" with "<password>" |
27 changes: 27 additions & 0 deletions
27
tests/Behat/Gherkin/Fixtures/features/background_with_outline_multi.feature
This file contains hidden or 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: Feature with example in background and multiple scenarios | ||
|
|
||
| Background: | ||
| Given a passing step | ||
| Examples: | ||
| | login | password | | ||
| | | | | ||
| | unknown_user | known_pass | | ||
|
|
||
| Scenario Outline: Scenario outline without example | ||
| Given I have browsed to login page | ||
| When I fill in "login" with "<login>" | ||
| And I fill in "password" with "<password>" | ||
|
|
||
| Scenario: A regular scenario | ||
| Given I have browsed to login page | ||
| When I fill in "login" with "user" | ||
| And I fill in "password" with "password" | ||
|
|
||
| Scenario Outline: Scenario outline with it's own example table | ||
| Given I have browsed to login page | ||
| When I fill in "login" with "<login>" | ||
| And I fill in "password" with "<password>" | ||
| Examples: | ||
| | login | password | | ||
| | hello | world | | ||
| | user | pass | |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.