mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00
gh-100739: Respect mock spec when checking for unsafe prefixes (GH-100740)
(cherry picked from commit 7f1eefc6f4
)
Co-authored-by: Christian Klein <167265+cklein@users.noreply.github.com>
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
parent
eba6b00953
commit
541e7b8029
3 changed files with 18 additions and 1 deletions
|
@ -647,7 +647,7 @@ class NonCallableMock(Base):
|
|||
raise AttributeError("Mock object has no attribute %r" % name)
|
||||
elif _is_magic(name):
|
||||
raise AttributeError(name)
|
||||
if not self._mock_unsafe:
|
||||
if not self._mock_unsafe and (not self._mock_methods or name not in self._mock_methods):
|
||||
if name.startswith(('assert', 'assret', 'asert', 'aseert', 'assrt')):
|
||||
raise AttributeError(
|
||||
f"{name!r} is not a valid assertion. Use a spec "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue