If
side_effect_funcis a function then whatever that function returns is
what calls to the mock return. Theside_effect_funcfunction is called with
the same arguments as the mock. This allows you to vary the return
value of the call dynamically, based on the input:>>> def side_effect_func(value): ... return value + 1 ... >>> m = MagicMock(side_effect=side_effect_func) >>> m(1) 2 >>> m(2) 3 >>> m.mock_calls [call(1), call(2)]
http://www.voidspace.org.uk/python/mock/mock.html#calling