Mocking async call in python 3.5
How do I mock async call from one native coroutine to other one using unittest.mock.patch?
How do I mock async call from one native coroutine to other one using unittest.mock.patch?
I am using pythons mock.patch and would like to change the return value for each call.
Here is the caveat:
the function being patched has no inputs, so I can not change the return value based on the input.