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!