remove nonsennse part of commit related to "mp" shortcut.
I wonder if introducing "mp" as a shortcut to monkeypatch is a good idea, actually :)
This commit is contained in:
parent
303f49a5ad
commit
2e23057804
|
@ -10,7 +10,6 @@ Changes between 2.2.1 and 2.2.2.dev
|
||||||
- fix issue106: allow parametrize to be applied multiple times
|
- fix issue106: allow parametrize to be applied multiple times
|
||||||
e.g. from module, class and at function level.
|
e.g. from module, class and at function level.
|
||||||
- add chdir method to monkeypatch funcarg
|
- add chdir method to monkeypatch funcarg
|
||||||
- add "mp" funcargs as a shortcut for "monkeypatch"
|
|
||||||
- fix crash resulting from calling monkeypatch undo a second time
|
- fix crash resulting from calling monkeypatch undo a second time
|
||||||
|
|
||||||
Changes between 2.2.0 and 2.2.1
|
Changes between 2.2.0 and 2.2.1
|
||||||
|
|
|
@ -37,11 +37,6 @@ Here our test function monkeypatches ``os.path.expanduser`` and
|
||||||
then calls into an function that calls it. After the test function
|
then calls into an function that calls it. After the test function
|
||||||
finishes the ``os.path.expanduser`` modification will be undone.
|
finishes the ``os.path.expanduser`` modification will be undone.
|
||||||
|
|
||||||
.. note::
|
|
||||||
|
|
||||||
As with version 2.2.2 there is a ``mp`` function argument
|
|
||||||
which is a shortcut for "monkeypatch".
|
|
||||||
|
|
||||||
Method reference of the monkeypatch function argument
|
Method reference of the monkeypatch function argument
|
||||||
-----------------------------------------------------
|
-----------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue