How do I test that a specific layout is used in RSpec? I've tried template.layout, response.layout, and response.should render_template("layout") with no luck.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In rspec 2, in a controller spec, you use render_template as you guessed, but you need to include a path relative to the views directory. So if your layout is app/views/layouts/mylayout.html.erb, your spec looks like this:
|
|||
|
|
Also, you can test both, the layout and the action rendering, in a one-liner in rspec-2:
|
|||
|
|
|
|||||||
|
