本文整理汇总了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])
示例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)
示例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()
示例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)
示例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)
示例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()
示例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)
示例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()
示例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()
示例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()
示例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)
示例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
示例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])
示例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()
示例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])