Anyone know how to get around this? On OSX, trying to get RSpec running with Rails 3.0.7. Full details at: https://gist.github.com/1017044
it \"renders but
For Access request get,post,patch and delete, You can use both request
and controller
in :type
I prefer :request
type for API Rspec and simple :controller
for controllers Rspec
Here For Request,
RSpec.describe ToolsController, type: 'request' do
it "renders buttons_widgets partial" do
get :buttons_widgets
response.should render_template("buttons_widgets")
end
end