On 2/7/08, David Chelimsky <[EMAIL PROTECTED]> wrote: > On Feb 7, 2008 2:27 PM, Rick DeNatale <[EMAIL PROTECTED]> wrote: > > I've got a controller which produces an RSS feed, pretty much based on > > Ryan Bates recent RailsCast. > > > > I'm having a heck of a time getting the spec to successfully fetch the > > feed though. I gave up got it working without a spec, and I'm now > > trying to back up and get the spec to work.
> > Try integrate_views: > > describe PodcastRssFeedController do > integrate_views > ... > end > > Without that, render gets modified by rspec (to isolate your > controllers from their views). Thanks for the quick reply David, that was the problem, athough I found that it needs to go into the nested example group, not the outer one. -- Rick DeNatale My blog on Ruby http://talklikeaduck.denhaven2.com/ _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
