mock.call.self

Here are the examples of the python api mock.call.self taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : mock_calls.py
with GNU General Public License v3.0
from Quantika14

  def __init__(self, *args, **kwargs):
    super(TestCase, self).__init__(*args, **kwargs)
    self.call = mock.call.self
    self._watched = {}

  def call_target(self, call):