mirror of https://github.com/python/cpython
gh-65454: avoid triggering call to a PropertyMock in NonCallableMock.__setattr__ (#120019)
This commit is contained in:
parent
422c4fc855
commit
9e9ee50421
|
@ -1127,6 +1127,14 @@ class TestCallList(unittest.TestCase):
|
|||
p.assert_called_once_with()
|
||||
|
||||
|
||||
def test_propertymock_attach(self):
|
||||
m = Mock()
|
||||
p = PropertyMock()
|
||||
type(m).foo = p
|
||||
m.attach_mock(p, 'foo')
|
||||
self.assertEqual(m.mock_calls, [])
|
||||
|
||||
|
||||
class TestCallablePredicate(unittest.TestCase):
|
||||
|
||||
def test_type(self):
|
||||
|
|
|
@ -830,6 +830,9 @@ class NonCallableMock(Base):
|
|||
mock_name = f'{self._extract_mock_name()}.{name}'
|
||||
raise AttributeError(f'Cannot set {mock_name}')
|
||||
|
||||
if isinstance(value, PropertyMock):
|
||||
self.__dict__[name] = value
|
||||
return
|
||||
return object.__setattr__(self, name, value)
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
:func:`unittest.mock.Mock.attach_mock` no longer triggers a call to a ``PropertyMock`` being attached.
|
Loading…
Reference in New Issue