Re: [rspec-users] Stubbing #render_to_string overrides #render

2011-08-16 Thread Nick
On Tuesday, August 16, 2011 8:02:08 AM UTC-4, dchel...@gmail.com wrote: > > IIRC, render(:json) eventually goes through render_to_string, which would > explain the behavior you're seeing. I could be wrong, but have a look at the > Rails code as a starting point. Thanks, David. I'll trace throu

Re: [rspec-users] Stubbing #render_to_string overrides #render

2011-08-16 Thread David Chelimsky
On Aug 8, 2011, at 10:36 AM, Nick wrote: > Hey folks. In my controller specs, when I stub #render_to_string, #render is > also stubbed out. There is nothing in RSpec that binds these two methods together. > Thus, if a controller action calls #render, the stubbed #render returns what > #render

[rspec-users] Stubbing #render_to_string overrides #render

2011-08-15 Thread Nick
Hey folks. In my controller specs, when I stub #render_to_string, #render is also stubbed out. Thus, if a controller action calls #render, the stubbed #render returns what #render_to_string returns, which causes specs to fail. http://pastie.org/2339809 Am I doing something strange or wrong? If