Re: [Rails] How to test the layout of a controller?
> I noticed this...
>
> http://bjhess.com/blog/2008/04/27/five-rails-tips/
>
> But it's outdated a bit. What should I do? I get a DEPRECATION
> WARNING: response.layout has been deprecated. Use template.layout
> instead. but after googling around I can't find a definitive solution.
I use this with Rails 3 and RSpec...
require 'spec_helper'
describe KidsController do
describe "GET index" do
before(:each) do
get 'index'
end
it "should use the 'kids' layout" do
response.should render_template('layouts/kids')
end
end
end
And in my KidsController I have the following line:
layout 'kids'
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home