示例#1
0
 def should_record_calls_on_children(self):
     result = Dingus()
     object_with_result = Dingus(method__returns=result)
     object_with_result.method()
     assert object_with_result.calls('method')
示例#2
0
 def should_record_calls_on_children(self):
     result = Dingus()
     object_with_result = Dingus(method__returns=result)
     object_with_result.method()
     assert object_with_result.calls('method')
示例#3
0
 def should_define_methods_returning_specified_values(self):
     result = Dingus()
     object_with_result = Dingus(method__returns=result)
     assert object_with_result.method() is result
示例#4
0
 def should_define_methods_returning_specified_values(self):
     result = Dingus()
     object_with_result = Dingus(method__returns=result)
     assert object_with_result.method() is result