summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-07-22 07:38:22 (GMT)
committerChris Withers <chris@withers.org>2019-07-22 07:38:22 (GMT)
commit7397cda99795a4a8d96193d710105e77a07b7411 (patch)
tree476ce4e60fbe1ffbdf40cf754b506bfa2deeafab /Misc
parentb530a4460b7a6ea96f1fa81a7c5bb529ead574ef (diff)
downloadcpython-7397cda99795a4a8d96193d710105e77a07b7411.zip
cpython-7397cda99795a4a8d96193d710105e77a07b7411.tar.gz
cpython-7397cda99795a4a8d96193d710105e77a07b7411.tar.bz2
bpo-21478: Record calls to parent when autospecced objects are used as child with attach_mock (GH 14688)
* Clear name and parent of mock in autospecced objects used with attach_mock * Add NEWS entry * Fix reversed order of comparison * Test child and standalone function calls * Use a helper function extracting mock to avoid code duplication and refactor tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-07-10-23-07-11.bpo-21478.cCw9rF.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-07-10-23-07-11.bpo-21478.cCw9rF.rst b/Misc/NEWS.d/next/Library/2019-07-10-23-07-11.bpo-21478.cCw9rF.rst
new file mode 100644
index 0000000..0ac9b8e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-07-10-23-07-11.bpo-21478.cCw9rF.rst
@@ -0,0 +1,2 @@
+Record calls to parent when autospecced object is attached to a mock using
+:func:`unittest.mock.attach_mock`. Patch by Karthikeyan Singaravelan.