Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. >>> with mock.patch('__main__.foo', side_effect=[1,Exception()]) as f:
  2. ... f(1)
  3. ... f(2)
  4. ...
  5. 1
  6. Traceback (most recent call last):
  7. File "<stdin>", line 3, in <module>
  8. File "/home/dan/nova/.tox/py27/lib/python2.7/site-packages/mock/mock.py", line 1092, in __call__
  9. return _mock_self._mock_call(*args, **kwargs)
  10. File "/home/dan/nova/.tox/py27/lib/python2.7/site-packages/mock/mock.py", line 1147, in _mock_call
  11. raise result
  12. Exception
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement