diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-21 05:02:17 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-21 05:02:17 (GMT) |
commit | a67a79da244020ff98e00a4221ca79e8cf44afea (patch) | |
tree | f9b0e5ba6a680bcf17266822eddabec5580dc842 /Doc/library/unittest.mock-examples.rst | |
parent | b6457249bf38ff6f33415b5585e925aad5a1cfde (diff) | |
parent | 30ffe7eb68015233a587153dcaa931b0bece59cc (diff) | |
download | cpython-a67a79da244020ff98e00a4221ca79e8cf44afea.zip cpython-a67a79da244020ff98e00a4221ca79e8cf44afea.tar.gz cpython-a67a79da244020ff98e00a4221ca79e8cf44afea.tar.bz2 |
Merge with 3.3
Diffstat (limited to 'Doc/library/unittest.mock-examples.rst')
-rw-r--r-- | Doc/library/unittest.mock-examples.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/unittest.mock-examples.rst b/Doc/library/unittest.mock-examples.rst index 444c208..98bfcc5 100644 --- a/Doc/library/unittest.mock-examples.rst +++ b/Doc/library/unittest.mock-examples.rst @@ -476,7 +476,7 @@ the `backend` attribute on a `Something` instance. In this particular case we are only interested in the return value from the final call to `start_call` so we don't have much configuration to do. Let's assume the object it returns is 'file-like', so we'll ensure that our response object -uses the builtin `file` as its `spec`. +uses the builtin `open` as its `spec`. To do this we create a mock instance as our mock backend and create a mock response object for it. To set the response as the return value for that final @@ -488,7 +488,7 @@ We can do that in a slightly nicer way using the :meth:`~Mock.configure_mock` method to directly set the return value for us: >>> something = Something() - >>> mock_response = Mock(spec=file) + >>> mock_response = Mock(spec=open) >>> mock_backend = Mock() >>> config = {'get_endpoint.return_value.create_call.return_value.start_call.return_value': mock_response} >>> mock_backend.configure_mock(**config) |