search for: record_act

Displaying 1 result from an estimated 1 matches for "record_act".

2008 Nov 03
1
stub! and null_object
I have some code I want to stub out as it''s not part of what I''m testing. It''s got a bit of DSL going on, so there are method calls chained together. The call I want to stub out looks like this: user.record_action(:uploaded_a_photo => concert).with_result(photo) So ideally, I''d just do @user.stub!(:record_action) and that would return a null object that didn''t care what we did to it. However, possibly due to my own ignorance, I''m having to do something a lot more ugly,...