]> granicus.if.org Git - python/commitdiff
unittest.mock doc: Fix references to recursive seal of Mocks (GH-9028)
authorMario Corchero <mariocj89@gmail.com>
Fri, 19 Oct 2018 21:57:37 +0000 (22:57 +0100)
committerVictor Stinner <vstinner@redhat.com>
Fri, 19 Oct 2018 21:57:37 +0000 (23:57 +0200)
The docs in `library/unittest.mock` have been updated to remove
confusing terms about submock and be explicit about the behavior
expected.

Doc/library/unittest.mock.rst
Lib/unittest/mock.py

index edafca0c674ed2bb68335f2c80d486f2074710cf..136804cfc2c88d9a199045ef5d1c0d0347af4607 100644 (file)
@@ -2410,17 +2410,18 @@ Sealing mocks
 
 .. function:: seal(mock)
 
-    Seal will disable the creation of mock children by preventing getting or setting
-    of any new attribute on the sealed mock. The sealing process is performed recursively.
+    Seal will disable the automatic creation of mocks when accessing an attribute of
+    the mock being sealed or any of its attributes that are already mocks recursively.
 
-    If a mock instance is assigned to an attribute instead of being dynamically created
+    If a mock instance with a name or a spec is assigned to an attribute
     it won't be considered in the sealing chain. This allows one to prevent seal from
     fixing part of the mock object. ::
 
         >>> mock = Mock()
         >>> mock.submock.attribute1 = 2
-        >>> mock.not_submock = mock.Mock()
+        >>> mock.not_submock = mock.Mock(name="sample_name")
         >>> seal(mock)
+        >>> mock.new_attribute  # This will raise AttributeError.
         >>> mock.submock.attribute2  # This will raise AttributeError.
         >>> mock.not_submock.attribute2  # This won't raise.
 
index 83026e6f3bd398fe082237340b4355d37f212ea0..6b7f293bc5e08c046612e6039759817d5b306ad1 100644 (file)
@@ -2425,15 +2425,14 @@ class PropertyMock(Mock):
 
 
 def seal(mock):
-    """Disable the automatic generation of "submocks"
+    """Disable the automatic generation of child mocks.
 
     Given an input Mock, seals it to ensure no further mocks will be generated
     when accessing an attribute that was not already defined.
 
-    Submocks are defined as all mocks which were created DIRECTLY from the
-    parent. If a mock is assigned to an attribute of an existing mock,
-    it is not considered a submock.
-
+    The operation recursively seals the mock passed in, meaning that
+    the mock itself, any mocks generated by accessing one of its attributes,
+    and all assigned mocks without a name or spec will be sealed.
     """
     mock._mock_sealed = True
     for attr in dir(mock):