• Home
  • Raw
  • Download

Lines Matching full:patch

28   @mock.patch.object(os.path,
54 @mock.patch.object(os.path, 'isfile', return_value=True)
55 @mock.patch.object(test_runner, '_DownloadAshChromeIfNecessary')
56 @mock.patch.object(subprocess, 'Popen', return_value=mock.Mock())
62 with mock.patch.object(sys, 'argv', args):
73 @mock.patch.object(os,
76 @mock.patch.object(tempfile,
79 @mock.patch.object(os.environ, 'copy', side_effect=[{}, {}])
80 @mock.patch.object(os.path, 'exists', return_value=True)
81 @mock.patch.object(os.path, 'isfile', return_value=True)
82 @mock.patch.object(os.path, 'abspath', return_value='/a/b/filter')
83 @mock.patch.object(test_runner,
86 @mock.patch.object(test_runner, '_DownloadAshChromeIfNecessary')
87 @mock.patch.object(subprocess, 'Popen', return_value=mock.Mock())
94 with mock.patch.object(sys, 'argv', args):
142 @mock.patch.object(os,
145 @mock.patch.object(os.path, 'exists', return_value=True)
146 @mock.patch.object(os.path, 'isfile', return_value=True)
147 @mock.patch.object(test_runner,
150 @mock.patch.object(test_runner, '_DownloadAshChromeIfNecessary')
151 @mock.patch.object(subprocess, 'Popen', return_value=mock.Mock())
158 with mock.patch.object(sys, 'argv', args):
162 @mock.patch.object(os,
165 @mock.patch.object(os.path, 'exists', return_value=True)
166 @mock.patch.object(os.path, 'isfile', return_value=True)
167 @mock.patch.object(test_runner, '_DownloadAshChromeIfNecessary')
168 @mock.patch.object(subprocess, 'Popen', return_value=mock.Mock())
178 with mock.patch.object(sys, 'argv', args):
183 @mock.patch.object(os,
186 @mock.patch.object(os.path, 'exists', return_value=True)
187 @mock.patch.object(os.path, 'isfile', return_value=True)
188 @mock.patch.object(test_runner, '_GetLatestVersionOfAshChrome')
189 @mock.patch.object(test_runner, '_DownloadAshChromeIfNecessary')
190 @mock.patch.object(subprocess, 'Popen', return_value=mock.Mock())
202 with mock.patch.object(sys, 'argv', args):
207 @mock.patch.object(os.path, 'isfile', return_value=True)
208 @mock.patch.object(test_runner, '_DownloadAshChromeIfNecessary')
209 @mock.patch.object(subprocess, 'Popen', return_value=mock.Mock())
216 with mock.patch.object(sys, 'argv', args):
222 @mock.patch.dict(os.environ, {'ASH_WRAPPER': 'gdb --args'}, clear=False)
223 @mock.patch.object(os,
226 @mock.patch.object(tempfile,
229 @mock.patch.object(os.environ, 'copy', side_effect=[{}, {}])
230 @mock.patch.object(os.path, 'exists', return_value=True)
231 @mock.patch.object(os.path, 'isfile', return_value=True)
232 @mock.patch.object(test_runner,
235 @mock.patch.object(test_runner, '_DownloadAshChromeIfNecessary')
236 @mock.patch.object(subprocess, 'Popen', return_value=mock.Mock())
243 with mock.patch.object(sys, 'argv', args):
251 @mock.patch.object(os.path, 'exists', return_value=True)
252 @mock.patch.object(os.path, 'isfile', return_value=True)
253 @mock.patch.object(test_runner, '_FindLacrosMajorVersion', return_value=91)
260 with mock.patch.object(sys, 'argv', args):
263 @mock.patch.object(os.path, 'exists', return_value=True)
269 PATCH=0\
274 with mock.patch(open_lib,
279 @mock.patch.object(os.path, 'exists', return_value=True)
292 with mock.patch(open_lib,