Home
last modified time | relevance | path

Searched refs:_call_matcher (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/test/
D_mock_backport.py741 def _call_matcher(self, _call): member in NonCallableMock
784 expected = self._call_matcher((args, kwargs))
785 actual = self._call_matcher(self.call_args)
811 expected = [self._call_matcher(c) for c in calls]
812 all_calls = _CallList(self._call_matcher(c) for c in self.mock_calls)
841 expected = self._call_matcher((args, kwargs))
842 actual = [self._call_matcher(c) for c in self.call_args_list]
/external/python/cpython3/Lib/unittest/
Dmock.py764 def _call_matcher(self, _call): member in NonCallableMock
825 expected = self._call_matcher((args, kwargs))
826 actual = self._call_matcher(self.call_args)
853 expected = [self._call_matcher(c) for c in calls]
855 all_calls = _CallList(self._call_matcher(c) for c in self.mock_calls)
884 expected = self._call_matcher((args, kwargs))
885 actual = [self._call_matcher(c) for c in self.call_args_list]
/external/python/mock/mock/
Dmock.py868 def _call_matcher(self, _call): member in NonCallableMock
933 expected = self._call_matcher((args, kwargs))
934 actual = self._call_matcher(self.call_args)
961 expected = [self._call_matcher(c) for c in calls]
963 all_calls = _CallList(self._call_matcher(c) for c in self.mock_calls)
992 expected = self._call_matcher((args, kwargs))
993 actual = [self._call_matcher(c) for c in self.call_args_list]