summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorLisa Roach <lisaroach14@gmail.com>2019-05-20 16:19:53 (GMT)
committerGitHub <noreply@github.com>2019-05-20 16:19:53 (GMT)
commit77b3b7701a34ecf6316469e05b79bb91de2addfa (patch)
tree305506415c811e5a01e4ee783f3346f0359b17a2 /Doc/whatsnew
parent0f72147ce2b3d65235b41eddc6a57be40237b5c7 (diff)
downloadcpython-77b3b7701a34ecf6316469e05b79bb91de2addfa.zip
cpython-77b3b7701a34ecf6316469e05b79bb91de2addfa.tar.gz
cpython-77b3b7701a34ecf6316469e05b79bb91de2addfa.tar.bz2
bpo-26467: Adds AsyncMock for asyncio Mock library support (GH-9296)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.8.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 07da404..0a79b6c 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -538,6 +538,10 @@ unicodedata
unittest
--------
+* XXX Added :class:`AsyncMock` to support an asynchronous version of :class:`Mock`.
+ Appropriate new assert functions for testing have been added as well.
+ (Contributed by Lisa Roach in :issue:`26467`).
+
* Added :func:`~unittest.addModuleCleanup()` and
:meth:`~unittest.TestCase.addClassCleanup()` to unittest to support
cleanups for :func:`~unittest.setUpModule()` and