Add new SpyOpReturnInOrder and SpyOpRaiseInOrder spy operations.

Review Request #11799 — Created Aug. 20, 2021 and submitted — Latest diff uploaded

Information

kgb
master

Reviewers

kgb

SpyOpReturnInOrder is a mix between SpyOpReturn and
SpyOpMatchInOrder. It takes a list of values, and will return a value
for each call made, in the order provided. If a call once the list is
exhausted, an exception will be raised.

SpyOpRaiseInOrder is the SpyOpRaise equivalent. It will raise
exceptions in order.

All unit tests pass in Python 2 and 3.

Diff Revision 1 (Latest)

Commits

First Last Summary ID Author
Add new SpyOpReturnInOrder and SpyOpRaiseInOrder spy operations.
`SpyOpReturnInOrder` is a mix between `SpyOpReturn` and `SpyOpMatchInOrder`. It takes a list of values, and will return a value for each call made, in the order provided. If a call once the list is exhausted, an exception will be raised. `SpyOpRaiseInOrder` is the `SpyOpRaise` equivalent. It will raise exceptions in order.
d9557c4ba8868ed86d87be263b078b556b1ef701 Christian Hammond
README.rst
kgb/__init__.py
kgb/ops.py
kgb/tests/test_ops.py
Loading...