This worked in Rails 3.1 but view.instance_variable_get(:@_content_for) is nil in Rails 3.2
Anybody have a solution for this in Rails 3.2? Thanks! Jared On Saturday, August 28, 2010 4:12:53 PM UTC-7, Michael Schuerig wrote: > > On Thursday 19 August 2010, Dylan Markow wrote: > > Is there a way to get to the content captured in a "content_for" > > block through my view specs, or at the very least get my "render" > > call to use the full layout? > > Try defining a method like this in your spec > > def content_for(name) > view.instance_variable_get(:@_content_for)[name] > end > > and then > > content_for(:sidebar).should ... > > > Michael > > -- > Michael Schuerig > mailto:[email protected] > http://www.schuerig.de/michael/ > _______________________________________________ > rspec-users mailing list > [email protected] > http://rubyforge.org/mailman/listinfo/rspec-users > > -- You received this message because you are subscribed to the Google Groups "rspec" group. To view this discussion on the web visit https://groups.google.com/d/msg/rspec/-/cOImksw4ScwJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rspec?hl=en.
