forked from pytest-dev/pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue where fixtures would lose the decorated functionality
Fix pytest-dev#3774
- Loading branch information
1 parent
a76cc8f
commit ef8ec01
Showing
5 changed files
with
67 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
17 changes: 17 additions & 0 deletions
17
testing/example_scripts/acceptance/fixture_mock_integration.py
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,17 @@ | ||
"""Reproduces issue #3774""" | ||
|
||
import mock | ||
|
||
import pytest | ||
|
||
config = {"mykey": "ORIGINAL"} | ||
|
||
|
||
@pytest.fixture(scope="function") | ||
@mock.patch.dict(config, {"mykey": "MOCKED"}) | ||
def my_fixture(): | ||
return config["mykey"] | ||
|
||
|
||
def test_foobar(my_fixture): | ||
assert my_fixture == "MOCKED" |
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