Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to test for connection errors to an external api. What is the best way to go about and do this?

in my controller i have

begin
 result = connect.to_api
rescue Error::TooManyRequests => e
 flash = e
end

I'd like to test that the error gets displayed to the user.

share|improve this question

2 Answers

Mock your connect object so that whatever method it calls raises the errors you'd expect to get when the network is done. Then test that the error gets set where you expect it to. Without knowing that connect.to.api really is, it's kind of hard to say what you should mock and what you should raise...

share|improve this answer
Thanks. connect.to.api in this case is Twitter.search(params[:q]) which may raise Twitter::Error::TooManyRequests – montrealmike Dec 5 '12 at 16:09
up vote 0 down vote accepted

Got my test to pass with

Connect.should_receive(:to_api).and_raise(Error::TooManyRequests)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.