mirror of
https://github.com/python/cpython.git
synced 2026-06-27 05:16:16 -04:00
[3.15] Capitalize first word in unittest.mock.assert_* docs and docstrings (GH-151951) (#152059)
(cherry picked from commit a46db4f8ba)
Co-authored-by: Hans Yu <github@shauny.anonaddy.me>
This commit is contained in:
committed by
GitHub
parent
0adb386f6e
commit
dcbcf09fe9
@@ -345,7 +345,7 @@ the *new_callable* argument to :func:`patch`.
|
||||
|
||||
.. method:: assert_any_call(*args, **kwargs)
|
||||
|
||||
assert the mock has been called with the specified arguments.
|
||||
Assert the mock has been called with the specified arguments.
|
||||
|
||||
The assert passes if the mock has *ever* been called, unlike
|
||||
:meth:`assert_called_with` and :meth:`assert_called_once_with` that
|
||||
@@ -360,7 +360,7 @@ the *new_callable* argument to :func:`patch`.
|
||||
|
||||
.. method:: assert_has_calls(calls, any_order=False)
|
||||
|
||||
assert the mock has been called with the specified calls.
|
||||
Assert the mock has been called with the specified calls.
|
||||
The :attr:`mock_calls` list is checked for the calls.
|
||||
|
||||
If *any_order* is false then the calls must be
|
||||
|
||||
@@ -937,7 +937,7 @@ class NonCallableMock(Base):
|
||||
return _call
|
||||
|
||||
def assert_not_called(self):
|
||||
"""assert that the mock was never called.
|
||||
"""Assert that the mock was never called.
|
||||
"""
|
||||
if self.call_count != 0:
|
||||
msg = ("Expected '%s' to not have been called. Called %s times.%s"
|
||||
@@ -947,7 +947,7 @@ class NonCallableMock(Base):
|
||||
raise AssertionError(msg)
|
||||
|
||||
def assert_called(self):
|
||||
"""assert that the mock was called at least once
|
||||
"""Assert that the mock was called at least once.
|
||||
"""
|
||||
if self.call_count == 0:
|
||||
msg = ("Expected '%s' to have been called." %
|
||||
@@ -955,7 +955,7 @@ class NonCallableMock(Base):
|
||||
raise AssertionError(msg)
|
||||
|
||||
def assert_called_once(self):
|
||||
"""assert that the mock was called only once.
|
||||
"""Assert that the mock was called only once.
|
||||
"""
|
||||
if not self.call_count == 1:
|
||||
msg = ("Expected '%s' to have been called once. Called %s times.%s"
|
||||
@@ -965,7 +965,7 @@ class NonCallableMock(Base):
|
||||
raise AssertionError(msg)
|
||||
|
||||
def assert_called_with(self, /, *args, **kwargs):
|
||||
"""assert that the last call was made with the specified arguments.
|
||||
"""Assert that the last call was made with the specified arguments.
|
||||
|
||||
Raises an AssertionError if the args and keyword args passed in are
|
||||
different to the last call to the mock."""
|
||||
@@ -987,7 +987,7 @@ class NonCallableMock(Base):
|
||||
|
||||
|
||||
def assert_called_once_with(self, /, *args, **kwargs):
|
||||
"""assert that the mock was called exactly once and that call was
|
||||
"""Assert that the mock was called exactly once and that call was
|
||||
with the specified arguments."""
|
||||
if not self.call_count == 1:
|
||||
msg = ("Expected '%s' to be called once. Called %s times.%s"
|
||||
@@ -999,7 +999,7 @@ class NonCallableMock(Base):
|
||||
|
||||
|
||||
def assert_has_calls(self, calls, any_order=False):
|
||||
"""assert the mock has been called with the specified calls.
|
||||
"""Assert the mock has been called with the specified calls.
|
||||
The `mock_calls` list is checked for the calls.
|
||||
|
||||
If `any_order` is False (the default) then the calls must be
|
||||
@@ -1044,7 +1044,7 @@ class NonCallableMock(Base):
|
||||
|
||||
|
||||
def assert_any_call(self, /, *args, **kwargs):
|
||||
"""assert the mock has been called with the specified arguments.
|
||||
"""Assert the mock has been called with the specified arguments.
|
||||
|
||||
The assert passes if the mock has *ever* been called, unlike
|
||||
`assert_called_with` and `assert_called_once_with` that only pass if
|
||||
|
||||
Reference in New Issue
Block a user