本文整理汇总了Python中samples.SampleBase类的典型用法代码示例。如果您正苦于以下问题:Python SampleBase类的具体用法?Python SampleBase怎么用?Python SampleBase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SampleBase类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_expects_bound_method_returns
def test_expects_bound_method_returns(self):
obj = SampleBase()
expect(obj.bound_method).args(1, 2).returns(12)
assert_equals(12, obj.bound_method(1, 2))
expect(obj.bound_method).args(1, 4).returns(1100)
assert_equals(1100, obj.bound_method(1, 4))
开发者ID:Sushant,项目名称:chai,代码行数:7,代码来源:sample_test.py
示例2: test_wrapper_discriptor
def test_wrapper_discriptor(self):
obj = SampleBase()
expect(obj.__str__).returns('hello')
assert_equals(obj.__str__(), 'hello')
expect(obj, '__str__').returns('hello')
assert_equals(obj.__str__(), 'hello')
开发者ID:vbabiy,项目名称:chai,代码行数:7,代码来源:sample_test.py
示例3: test_expects_bound_method_at_most
def test_expects_bound_method_at_most(self):
obj = SampleBase()
expect(obj.bound_method).args(1, 2).returns(12).at_most(3)
assert_equals(12, obj.bound_method(1, 2))
assert_equals(12, obj.bound_method(1, 2))
obj.bound_method(1, 2)
assert_raises(UnexpectedCall, obj.bound_method, 1, 2)
开发者ID:Sushant,项目名称:chai,代码行数:7,代码来源:sample_test.py
示例4: test_expects_bound_method_at_least_as_last_expectation
def test_expects_bound_method_at_least_as_last_expectation(self):
obj = SampleBase()
expect(obj.bound_method).args(1, 2).returns(12).at_least(3)
assert_equals(12, obj.bound_method(1, 2))
assert_equals(12, obj.bound_method(1, 2))
assert_equals(12, obj.bound_method(1, 2))
assert_equals(12, obj.bound_method(1, 2))
开发者ID:Sushant,项目名称:chai,代码行数:7,代码来源:sample_test.py
示例5: tests_expects_bound_method_any_order_with_fixed_maxes
def tests_expects_bound_method_any_order_with_fixed_maxes(self):
obj = SampleBase()
expect(obj.bound_method).args(1).returns(2).any_order()
expect(obj.bound_method).args(3).returns(4).any_order()
assert_equals(4, obj.bound_method(3) )
assert_equals(2, obj.bound_method(1) )
assert_raises(UnexpectedCall, obj.bound_method, 1)
开发者ID:Sushant,项目名称:chai,代码行数:7,代码来源:sample_test.py
示例6: test_expects_class_method
def test_expects_class_method(self):
expect(SampleBase.a_classmethod).returns(12)
assert_equals(12, SampleBase.a_classmethod())
obj = SampleBase()
expect(SampleBase.a_classmethod).returns(100)
assert_equals(100, obj.a_classmethod())
开发者ID:Sushant,项目名称:chai,代码行数:7,代码来源:sample_test.py
示例7: test_method_wrapper
def test_method_wrapper(self):
obj = SampleBase()
expect(obj.__hash__).returns('hello')
assert_equals(obj.__hash__(), 'hello')
expect(obj, '__hash__').returns('hello')
assert_equals(obj.__hash__(), 'hello')
开发者ID:vbabiy,项目名称:chai,代码行数:7,代码来源:sample_test.py
示例8: test_expects_bound_method_can_be_used_for_iterative_testing
def test_expects_bound_method_can_be_used_for_iterative_testing(self):
obj = SampleBase()
expect(obj.bound_method).args(1, 2).returns(12)
assert_equals(12, obj.bound_method(1, 2))
assert_raises(UnexpectedCall, obj.bound_method)
expect(obj.bound_method).args(1, 4).returns(1100)
assert_equals(1100, obj.bound_method(1, 4))
开发者ID:Sushant,项目名称:chai,代码行数:8,代码来源:sample_test.py
示例9: test_expects_any_order_without_count_modifiers
def test_expects_any_order_without_count_modifiers(self):
obj = SampleBase()
expect(obj.bound_method).args(3).returns(4)
expect(obj.bound_method).args(1).returns(2).any_order()
expect(obj.bound_method).args(3).returns(4)
assert_equals(4, obj.bound_method(3) )
assert_equals(4, obj.bound_method(3) )
assert_equals(2, obj.bound_method(1) )
开发者ID:Sushant,项目名称:chai,代码行数:8,代码来源:sample_test.py
示例10: test_add_to_list_with_module_mock_object
def test_add_to_list_with_module_mock_object(self):
mock( samples, 'deque' )
deq = mock()
expect( samples.deque.__call__ ).returns( deq )
expect( deq.append ).args('value')
obj = SampleBase()
obj.add_to_list('value')
开发者ID:Sushant,项目名称:chai,代码行数:8,代码来源:sample_test.py
示例11: test_expect_unbound_method_acts_as_any_instance
def test_expect_unbound_method_acts_as_any_instance(self):
expect( SampleBase.bound_method ).args('hello').returns('world')
expect( SampleBase.bound_method ).args('hello').returns('mars')
obj1 = SampleBase()
obj2 = SampleBase()
assert_equals( 'world', obj2.bound_method('hello') )
assert_equals( 'mars', obj1.bound_method('hello') )
assert_raises(UnexpectedCall, obj2.bound_method)
开发者ID:Sushant,项目名称:chai,代码行数:9,代码来源:sample_test.py
示例12: test_expects_bound_method_at_least_with_other_expectation_and_anyorder
def test_expects_bound_method_at_least_with_other_expectation_and_anyorder(self):
obj = SampleBase()
expect(obj.bound_method).args(1, 2).returns(12).at_least(2).any_order()
assert_equals(12, obj.bound_method(1, 2))
assert_equals(12, obj.bound_method(1, 2))
expect(obj.bound_method).args(1, 3).returns(100)
assert_equals(100, obj.bound_method(1, 3))
assert_equals(12, obj.bound_method(1, 2))
开发者ID:Sushant,项目名称:chai,代码行数:10,代码来源:sample_test.py
示例13: tests_expects_bound_method_any_order_with_mins
def tests_expects_bound_method_any_order_with_mins(self):
obj = SampleBase()
expect(obj.bound_method).args(1).returns(2).any_order().at_least_once()
expect(obj.bound_method).args(3).returns(4).any_order().at_least_once()
assert_equals(4, obj.bound_method(3) )
assert_equals(2, obj.bound_method(1) )
assert_equals(4, obj.bound_method(3) )
assert_equals(2, obj.bound_method(1) )
assert_equals(2, obj.bound_method(1) )
assert_equals(4, obj.bound_method(3) )
assert_equals(2, obj.bound_method(1) )
开发者ID:Sushant,项目名称:chai,代码行数:11,代码来源:sample_test.py
示例14: test_var_comparator
def test_var_comparator(self):
obj = SampleBase()
expect(obj.add_to_list).args( var('value1') )
expect(obj.add_to_list).args( var('value2') )
expect(obj.add_to_list).args( var('value3') ).at_least_once()
obj.add_to_list('v1')
obj.add_to_list('v2')
obj.add_to_list('v3')
obj.add_to_list('v3')
self.assertRaises( UnexpectedCall, obj.add_to_list, 'v3a')
assert_equals( 'v1', var('value1').value )
assert_equals( 'v2', var('value2').value )
assert_equals( 'v3', var('value3').value )
开发者ID:Sushant,项目名称:chai,代码行数:15,代码来源:sample_test.py
示例15: test_expect_bound_method_with_anyof_comparator
def test_expect_bound_method_with_anyof_comparator(self):
obj = SampleBase()
expect(obj.bound_method).times(4).args(
any_of(int,3.14,'hello',is_a(list)) )
obj.bound_method( 42 )
obj.bound_method( 3.14 )
obj.bound_method( 'hello' )
obj.bound_method( [1,2,3] )
assert_raises(UnexpectedCall, obj.bound_method, '42' )
开发者ID:Sushant,项目名称:chai,代码行数:9,代码来源:sample_test.py
示例16: test_almost_equals_comparator
def test_almost_equals_comparator(self):
obj = SampleBase()
expect(obj.bound_method).args(almost_equals(10.1234, 2)).returns(100)
assert_equals(obj.bound_method(10.12), 100)
开发者ID:Sushant,项目名称:chai,代码行数:4,代码来源:sample_test.py
示例17: test_expect_bound_method_with_equals_comparator
def test_expect_bound_method_with_equals_comparator(self):
obj = SampleBase()
expect(obj.bound_method).args( equals(42) )
obj.bound_method( 42 )
assert_raises(UnexpectedCall, obj.bound_method, 32 )
开发者ID:Sushant,项目名称:chai,代码行数:5,代码来源:sample_test.py
示例18: test_expect_bound_method_with_is_a_comparator
def test_expect_bound_method_with_is_a_comparator(self):
obj = SampleBase()
expect(obj.bound_method).args( is_a(int) )
obj.bound_method( 42 )
assert_raises(UnexpectedCall, obj.bound_method, '42' )
开发者ID:Sushant,项目名称:chai,代码行数:5,代码来源:sample_test.py
示例19: test_add_to_list_with_mock_object
def test_add_to_list_with_mock_object(self):
obj = SampleBase()
obj._deque = mock()
expect( obj._deque.append ).args('value')
obj.add_to_list('value')
开发者ID:Sushant,项目名称:chai,代码行数:5,代码来源:sample_test.py
示例20: test_expect_bound_method_with_allof_comparator
def test_expect_bound_method_with_allof_comparator(self):
obj = SampleBase()
expect(obj.bound_method).args( all_of(bytearray,'hello') )
obj.bound_method( bytearray('hello') )
assert_raises(UnexpectedCall, obj.bound_method, 'hello' )
开发者ID:Sushant,项目名称:chai,代码行数:5,代码来源:sample_test.py
注:本文中的samples.SampleBase类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论