How to test a controller action that sends a file?

If I do it with controller.should_receive(:send_file) test fails with "Missing template" because nothing gets rendered.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 8 down vote accepted

From Googling around, it appears that render will also be called at some point .. but with no template, will cause an error.

The solution seems to be to stub it out as well:

controller.stub!(:render)
link|improve this answer
Nice, why didn't I think of that :) – Mirko Jan 16 '11 at 12:12
feedback

Another way that works is:

controller.should_receive(:send_file).and_return{controller.render :nothing => true}

To me, this captures the fact that the intended side effect of send_file is to arrange that nothing else be rendered. (Albeit admittedly it seems a bit wonky to have the stub call a method on the original object.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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