You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When waiting for code in other threads to call mock methods, it would be nice
if you could do something like:
import mock
import threading
m_fn = mock.Mock()
def caller(fn, num):
for i in range(num):
fn()
threading.Thread(target=caller, args=(m_fn, 3)).start()
m_fn.assert_wait_call_count(count=3, timeout=1.)
which should wait for up to timeout seconds for m_fn to be called count times,
and raise an assertion error if it is not called at least count times within
the timeout.
Original issue reported on code.google.com by [email protected] on 15 Nov 2012 at 12:29
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 15 Nov 2012 at 12:29The text was updated successfully, but these errors were encountered: