Home | History | Annotate | Download | only in test

Lines Matching refs:Stub

1228         def Stub():
1230 self.assertRaises(ExceptionMock, Stub)
1232 self.assertRaises((ValueError, ExceptionMock), Stub)
1243 self.assertRaises(ValueError, Stub)
1248 def Stub():
1251 Stub()
1254 Stub()
1276 self.assertRaises(ValueError, Stub)
1307 def Stub():
1310 self.assertRaisesRegex(ExceptionMock, re.compile('expect$'), Stub)
1311 self.assertRaisesRegex(ExceptionMock, 'expect$', Stub)
1347 def Stub():
1354 Stub)
1359 re.compile('^Expected$'), Stub)
1365 def Stub(foo):
1371 Stub(v)