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.
|
How to test a controller action that sends a file? If I do it with
| |||
|
feedback
|
|
From Googling around, it appears that The solution seems to be to stub it out as well:
| |||
|
feedback
|
|
Another way that works is:
To me, this captures the fact that the intended side effect of | |||
|
feedback
|