當前位置: 首頁>>代碼示例>>Python>>正文


Python Controller.replay方法代碼示例

本文整理匯總了Python中pymock.Controller.replay方法的典型用法代碼示例。如果您正苦於以下問題:Python Controller.replay方法的具體用法?Python Controller.replay怎麽用?Python Controller.replay使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pymock.Controller的用法示例。


在下文中一共展示了Controller.replay方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: testExplicitGeneratorConvenienceFunctionUsage

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testExplicitGeneratorConvenienceFunctionUsage(self):
		"""Check normal operation with explicit generators using  """
		c = Controller()
		x = c.mock()
		c.generator(x.g(8, 9), [10, 11])
		c.replay()
		self.failUnless([k for k in x.g(8, 9)] == [10, 11])
開發者ID:agilist,項目名稱:springmemo,代碼行數:9,代碼來源:test_pymock.py

示例2: testExceptionRaisedByFunctions

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testExceptionRaisedByFunctions(self):
		"""Ensure that function calls play back exceptions"""
		c = Controller()
		x = c.mock(KlassBeingMocked)
		x.g.h(3, 4)
		c.setException(Exception)
		c.replay()
		self.failUnlessRaises(Exception, x.g.h, 3, 4)
開發者ID:agilist,項目名稱:springmemo,代碼行數:10,代碼來源:test_pymock.py

示例3: testExpectAndReturn

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testExpectAndReturn(self):
		"""Check expect and return"""
		c = Controller()
		x = c.mock()
		c.expectAndReturn(x.g(8, 9), 5)
		c.replay()
		self.failUnless(x.g(8, 9) == 5)
		c.verify()
開發者ID:agilist,項目名稱:springmemo,代碼行數:10,代碼來源:test_pymock.py

示例4: testUnusedAttributeAssignmentCanBeVerified

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testUnusedAttributeAssignmentCanBeVerified(self):
	    """Ensure that unused calls cause verification failure"""
	    
	    c = Controller()
	    x = c.mock(KlassBeingMocked)
	    x.w = 5
	    c.replay()
	    self.failUnlessRaises(RecordedCallsWereNotReplayedCorrectly, c.verify)
開發者ID:agilist,項目名稱:springmemo,代碼行數:10,代碼來源:test_pymock.py

示例5: testPlayModeAndSwitches

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testPlayModeAndSwitches(self):
	    """Verify that the replay switch works"""
	    c = Controller()
	    self.failUnless(c.isRecording)
	    self.failIf(c.isPlayingBack)
	    c.replay()
	    self.failIf(c.isRecording)
	    self.failUnless(c.isPlayingBack)
開發者ID:agilist,項目名稱:springmemo,代碼行數:10,代碼來源:test_pymock.py

示例6: testFunctionCallWithNoReturnValueSpecified

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testFunctionCallWithNoReturnValueSpecified(self):
		"""Function call with no return value specified"""
		c = Controller()
		x = c.mock(KlassBeingMocked)
		x.g(3, 4)
		c.replay()
		x.g(3, 4)
		c.verify()
開發者ID:agilist,項目名稱:springmemo,代碼行數:10,代碼來源:test_pymock.py

示例7: testGetattrWithReturnValueSpecified

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testGetattrWithReturnValueSpecified(self):
		"""Getattr with return value specified"""
		c = Controller()
		x = c.mock(KlassBeingMocked)
		x.g
		c.setReturn(8)
		c.replay()
		self.failUnless(x.g == 8)
開發者ID:agilist,項目名稱:springmemo,代碼行數:10,代碼來源:test_pymock.py

示例8: testSetItem

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testSetItem(self):
		"""Ensure that __setitem__ works"""
		c = Controller()
		x = c.mock(KlassBeingMocked)
		x.g[6] = 7
		c.replay()
		x.g[6] = 7
		c.verify()
開發者ID:agilist,項目名稱:springmemo,代碼行數:10,代碼來源:test_pymock.py

示例9: testGetItem

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testGetItem(self):
		"""Ensure that __getitem__ works"""
		c = Controller()
		x = c.mock(KlassBeingMocked)
		x.g[5]
		c.setReturn(6)
		c.replay()
		self.failUnless(x.g[5] == 6)
		c.verify()
開發者ID:agilist,項目名稱:springmemo,代碼行數:11,代碼來源:test_pymock.py

示例10: testLen

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testLen(self):
		"""Ensure that __len__ works"""
		c = Controller()
		x = c.mock(KlassBeingMocked)
		k = len(x)
		c.setReturn(5)
		c.replay()
		self.failUnless(len(x) == 5)
		c.verify()
開發者ID:agilist,項目名稱:springmemo,代碼行數:11,代碼來源:test_pymock.py

示例11: testExplicitGeneratorConvenienceFunctionExceptionUsage

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testExplicitGeneratorConvenienceFunctionExceptionUsage(self):
		"""Check explicit generators using compact specification"""
		c = Controller()
		x = c.mock()
		c.generator(x.g(8, 9), [10], Exception("bogus"))
		c.replay()
		g = x.g(8, 9)
		self.failUnless(g.next() == 10)
		self.failUnlessRaises(Exception, g.next)
開發者ID:agilist,項目名稱:springmemo,代碼行數:11,代碼來源:test_pymock.py

示例12: testAttributeAssignmentCanBePlayedBack

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testAttributeAssignmentCanBePlayedBack(self):
	    """Attibute assignment should be intercepted"""
	    
	    c = Controller()
	    x = c.mock(KlassBeingMocked)
	    x.w = 5
	    x.w = 6
	    c.replay()
	    x.w = 5
開發者ID:agilist,項目名稱:springmemo,代碼行數:11,代碼來源:test_pymock.py

示例13: testIter

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testIter(self):
		"""Ensure that __iter__ records and replays values"""
		c = Controller()
		x = c.mock()
		x.__iter__()
		c.setReturn(1)
		c.setReturn(2)
		c.replay()
		self.assertTrue([k for k in x] == [1, 2])
開發者ID:agilist,項目名稱:springmemo,代碼行數:11,代碼來源:test_pymock.py

示例14: testUsedAttributeAssignmentCanBeVerified

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testUsedAttributeAssignmentCanBeVerified(self):
	    """Ensure that used calls will not cause verification failure"""        
	    c = Controller()
	    x = c.mock(KlassBeingMocked)
	    x.w = 5
	    x.h = 3
	    c.replay()
	    x.h = 3
	    x.w = 5
	    c.verify()
開發者ID:agilist,項目名稱:springmemo,代碼行數:12,代碼來源:test_pymock.py

示例15: testExplicitGeneratorUsage

# 需要導入模塊: from pymock import Controller [as 別名]
# 或者: from pymock.Controller import replay [as 別名]
	def testExplicitGeneratorUsage(self):
		"""Check operation of explicit generators using discrete settings"""
		c = Controller()
		x = c.mock()
		x.g(8, 9)
		c.generator()
		c.setReturn(10)
		c.setReturn(11)
		c.replay()
		self.failUnless([k for k in x.g(8, 9)] == [10, 11])
開發者ID:agilist,項目名稱:springmemo,代碼行數:12,代碼來源:test_pymock.py


注:本文中的pymock.Controller.replay方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。