Re: [rspec-users] render_views and render_to_string

2011-03-13 Thread David Chelimsky
I tried something similar and worked fine with or without render_views, so I really have no idea why you're experiencing that. Please file a bug report to https://github.com/rspec/rspec-rails/issues and be sure to include version numbers of Ruby, Rails and RSpec. On Wed, Mar 9, 2011 at 9:39 PM, N

Re: [rspec-users] render_views and render_to_string

2011-03-13 Thread Nick
Bump. Any ideas? On Sunday, March 6, 2011 5:48:29 PM UTC-5, Nick wrote: > > Hey guys. One of my controller actions uses #render_to_string to send back > a JSON response. > > When I try to spec this, Ruby raises a NoMethodError, saying that > #render_to_string doesn't exist in my controller acti

[rspec-users] render_views and render_to_string

2011-03-13 Thread Nick
Hey guys. One of my controller actions uses #render_to_string to send back a JSON response. When I try to spec this, Ruby raises a NoMethodError, saying that #render_to_string doesn't exist in my controller action. Here's the controller action, spec, and output: http://pastie.org/1640962 Any i