Esempio n. 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')
Esempio n. 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')
Esempio n. 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
Esempio n. 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