What's the proper way to disable ActionController::TestCase to actually render the views? Alternatively, what'd be the way to render the view without the layout in the tests?
Using rr, I've tried stub(@controller).render { "" }
but this broke the assert_template assertions.
Thanks!
I had the same problem of disabling just layout, while still rendering the main view. With rspec mocks this works for me:
@controller.stub(:layout).and_return(false)
I've never used rr, but I would imagine the syntax might be as follows:
stub(@controller).layout { false }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With