-
Notifications
You must be signed in to change notification settings - Fork 221
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
Add test to assert that issue 389 is resolved. #744
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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 |
---|---|---|
|
@@ -74,7 +74,7 @@ def test_string_steps_dont_take_precedence(pytester): | |
pytester.makeconftest( | ||
textwrap.dedent( | ||
""" | ||
from pytest_bdd import given, when, then, parsers | ||
from pytest_bdd import given, when, then | ||
from pytest_bdd.utils import dump_obj | ||
|
||
|
||
|
@@ -95,8 +95,7 @@ def _(): | |
pytester.makepyfile( | ||
textwrap.dedent( | ||
r""" | ||
import pytest | ||
from pytest_bdd import parsers, given, when, then, scenarios | ||
from pytest_bdd import parsers, given, scenarios | ||
from pytest_bdd.utils import dump_obj | ||
|
||
scenarios("arguments.feature") | ||
|
@@ -114,3 +113,49 @@ def _(value): | |
|
||
[which] = collect_dumped_objects(result) | ||
assert which == "re" | ||
|
||
|
||
def test_same_name_for_step_arg_and_example_parameter(pytester): | ||
"""Test that using the same name for step arg and example parameter works as intended.""" | ||
pytester.makefile( | ||
".feature", | ||
step_args_examples_params=textwrap.dedent( | ||
"""\ | ||
Feature: Test feature | ||
|
||
Scenario Outline: Scenario 1 | ||
Given Action "A" is taken | ||
Then Some other action "<action>" is taken | ||
|
||
Examples: Actions | ||
| action | | ||
| B | | ||
""" | ||
), | ||
) | ||
pytester.makepyfile( | ||
textwrap.dedent( | ||
""" | ||
from pytest_bdd import scenarios, given, then, parsers | ||
|
||
scenarios('.') | ||
|
||
|
||
@given(parsers.parse('Action "{action}" is taken')) | ||
def take_action1(action): | ||
print(f'take_action1:{action}') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's use |
||
|
||
|
||
@then(parsers.parse('Some other action "{action}" is taken')) | ||
def take_action2(action): | ||
print(f'take_action2:{action}') | ||
|
||
""" | ||
) | ||
) | ||
|
||
result = pytester.runpytest("-s") | ||
result.assert_outcomes(passed=1) | ||
|
||
result.stdout.fnmatch_lines(["*take_action1:A*"]) | ||
result.stdout.fnmatch_lines(["*take_action2:B*"]) |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still not clear what we are testing here. Is it about params being filled from example tables vs from parsing the step name?
If so let's make it clearer in the docstring.
Maybe let's also rewrite the step names, like:
This would be much clearer to me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the other test is actually testing the same thing and this can be closed