| 419 | |
| 420 | # Internal class to identify if we wrapped an iterator object or not. |
| 421 | class _MockIter(object): |
| 422 | def __init__(self, obj): |
| 423 | self.obj = iter(obj) |
| 424 | def __next__(self): |
| 425 | return next(self.obj) |
| 426 | |
| 427 | class Base(object): |
| 428 | _mock_return_value = DEFAULT |
no outgoing calls
no test coverage detected
searching dependent graphs…