Changes by Arne de Laat :
--
pull_requests: +222
___
Python tracker
<http://bugs.python.org/issue28911>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Arne de Laat :
--
pull_requests: +220
___
Python tracker
<http://bugs.python.org/issue28911>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Arne de Laat :
--
pull_requests: +219
___
Python tracker
<http://bugs.python.org/issue28911>
___
___
Python-bugs-list mailing list
Unsubscribe:
Arne de Laat added the comment:
*ping*
Is this patch acceptable as is?
Perhaps a new issue can be made for a method to check at most one call with a
specific signature i.e. `assert_one_call_with`.
--
___
Python tracker
<http://bugs.python.
Arne de Laat added the comment:
Unfortunately there cant be commas in the method name, that would clarify the
name. It should be read as 'assert called once, with ...' not 'assert called
once with ...'.
I have often used the method to test something was called only
New submission from Arne de Laat:
The name assert_called_once_with and the current method documentation can be
interpreted to mean that it asserts that there is precisely one call matching
the given signature, regardless of the total number of calls. However, the
method first checks that