Displaying 1 result from an estimated 1 matches for "even_more_data".
2007 Aug 17
1
Testing webservices in Integration Tests with Jamis Buck's recipe?
Hello,
I''m using Jamis Buck''s recipe to do integration tests on an
application, but I got a nil.recycle! error while doing a webservice
call.
This is the situation.
def test_uploading_data
invoke :upload, data
invoke :upload, even_more_data
real_user_session = new_session_as @real_user
real_user_session.press_magic_button_to_enable_more_uploads
invoke :upload, super_new_data
end
Test test results in a nil.recycle! error message on the last invoke:
NoMethodError: You have a nil object when you didn''t expect it!
Th...