예제 #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