diff options
author | Eddie Peters <eddie@dinogalactic.com> | 2021-03-04 23:39:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 23:39:29 (GMT) |
commit | 2122e486307d5577cb5fb5e7cfd24095695bc7e9 (patch) | |
tree | e7b889c560b95f41c4713ab9f2d13edaa2dc3d09 /Doc | |
parent | 67148254146948041a77d8a2989f41b88cdb2f99 (diff) | |
download | cpython-2122e486307d5577cb5fb5e7cfd24095695bc7e9.zip cpython-2122e486307d5577cb5fb5e7cfd24095695bc7e9.tar.gz cpython-2122e486307d5577cb5fb5e7cfd24095695bc7e9.tar.bz2 |
bpo-43400: Remove "easy to use" from mock docs (GH-24752)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/unittest.mock.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index f795a2e..1604731 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -30,7 +30,7 @@ module and class level attributes within the scope of a test, along with some examples of how to use :class:`Mock`, :class:`MagicMock` and :func:`patch`. -Mock is very easy to use and is designed for use with :mod:`unittest`. Mock +Mock is designed for use with :mod:`unittest` and is based on the 'action -> assertion' pattern instead of 'record -> replay' used by many mocking frameworks. |