Is it possible to test the use of a given layout using RSpec with Rails, for example I\'d like a matcher that does the following:
response.should use_layout(
There's already a perfectly functional matcher for this:
response.should render_template(:layout => 'fooo')
(Rspec 2.6.4)