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


Python Spec.times方法代碼示例

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


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

示例1: supply_single_value_twice

# 需要導入模塊: from lancelot import Spec [as 別名]
# 或者: from lancelot.Spec import times [as 別名]
 def supply_single_value_twice(self):
     ''' combining supplies(a_value) & times(2) (in any order) 
     should return a_value, twice '''
     spec = Spec(MockResult(MockCall(None, '')))
     spec.when(spec.times(2), spec.supplies('f'))
     spec.then(spec.specified_times()).should_be(2)
     spec.then(spec.next()).should_be('f')
     spec.then(spec.next()).should_be('f')
 
     spec = Spec(MockResult(MockCall(None, '')))
     spec.when(spec.supplies('f'), spec.times(2))
     spec.then(spec.specified_times()).should_be(2)
     spec.then(spec.next()).should_be('f')
     spec.then(spec.next()).should_be('f')
開發者ID:gbremer,項目名稱:lancelot,代碼行數:16,代碼來源:mocking_spec.py

示例2: return_twice

# 需要導入模塊: from lancelot import Spec [as 別名]
# 或者: from lancelot.Spec import times [as 別名]
 def return_twice(self):
     ''' times(2) should return default (None) value just twice '''
     spec = Spec(MockResult(MockCall(MockSpec(), '')))
     spec.when(spec.times(2))
     spec.then(spec.specified_times()).should_be(2)
     spec.then(spec.times_remaining()).should_be(2)
     spec.then(spec.times_remaining()).should_be(2)
     spec.then(spec.next()).should_be(None)
     spec.then(spec.times_remaining()).should_be(1)
     spec.then(spec.next()).should_be(None)
     spec.then(spec.times_remaining()).should_be(0)
     spec.then(spec.next()).should_raise(UnmetSpecification)
開發者ID:gbremer,項目名稱:lancelot,代碼行數:14,代碼來源:mocking_spec.py

示例3: supply_different_values_each_time

# 需要導入模塊: from lancelot import Spec [as 別名]
# 或者: from lancelot.Spec import times [as 別名]
 def supply_different_values_each_time(self):
     ''' supplies(a,b,...) should return a,b,... on successive
     calls '''
     spec = Spec(MockResult(MockCall(MockSpec(), '')))
     spec.when(spec.times(3))
     spec.then(spec.supplies('x', 
                                       'y', 
                                       'z')).should_not_raise(ValueError)
     spec.then(spec.specified_times()).should_be(3)
     spec.then(spec.next()).should_be('x')
     spec.then(spec.next()).should_be('y')
     spec.then(spec.next()).should_be('z')
     spec.then(spec.next()).should_raise(UnmetSpecification)
開發者ID:gbremer,項目名稱:lancelot,代碼行數:15,代碼來源:mocking_spec.py

示例4: raise_exception

# 需要導入模塊: from lancelot import Spec [as 別名]
# 或者: from lancelot.Spec import times [as 別名]
    def raise_exception(self):
        ''' raises(exception) should raise exceptions in the same
        fashion as will_suppply_values should return values '''
        spec = Spec(MockResult(MockCall(MockSpec(), '')))
        exception = ValueError('the number of the counting shall be three')
        spec.when(spec.raises(exception))
        spec.then(spec.next()).should_raise(exception)
        spec.then(spec.times_remaining()).should_be(0)
        spec.then(spec.next()).should_raise(UnmetSpecification)
        
        spec = Spec(MockResult(MockCall(MockSpec(), '')))
        exception = ValueError('the number of the counting shall be three')
        spec.when(spec.times(2), spec.raises(exception))
        spec.then(spec.next()).should_raise(exception)
        spec.then(spec.next()).should_raise(exception)
        spec.then(spec.next()).should_raise(UnmetSpecification)

        spec = Spec(MockResult(MockCall(MockSpec(), '')))
        exceptions = (ValueError('the number of the counting shall be three'),
                      ValueError('Four shalt thou not count'))
        spec.when(spec.times(2), spec.raises(*exceptions))
        spec.then(spec.next()).should_raise(exceptions[0])
        spec.then(spec.next()).should_raise(exceptions[1])
        spec.then(spec.next()).should_raise(UnmetSpecification)
開發者ID:gbremer,項目名稱:lancelot,代碼行數:26,代碼來源:mocking_spec.py

示例5: check_number_values_against_times

# 需要導入模塊: from lancelot import Spec [as 別名]
# 或者: from lancelot.Spec import times [as 別名]
 def check_number_values_against_times(self):
     ''' supplies(a,b,...) iff times(len(a,b,...)) '''
     spec = Spec(MockResult(MockCall(None, '')))
     spec.when(spec.times(2))
     spec.then(spec.supplies('a', 'b')).should_not_raise(ValueError)
     spec.then(spec.supplies('x', 'y', 'z')).should_raise(ValueError)
開發者ID:gbremer,項目名稱:lancelot,代碼行數:8,代碼來源:mocking_spec.py


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