kaste / mockito-python

Mockito is a spying framework
MIT License
123 stars 12 forks source link

resetting a mock? #40

Closed attila123 closed 3 years ago

attila123 commented 3 years ago

Hi, thanks for this excellent library.

If I see correctly, there is no way of resetting a mock. Could you please add? The closest thing I found is clear_invocations() in class Mock. But the examples always use mock(), not Mock().

Update: I guess I found it:

mockito.forget_invocations(my_mock)
kaste commented 3 years ago

Yes, forget_invocations is probably what you want. The uppercase Mock is actually an implementation detail and should not be used, only use the lowercased functions.