Пример #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