以下のようにテストを書いたところ、次のエラー。
spec/features/gyms_spec.rb
require 'rails_helper'
describe "indexメソッドが動く" do
expect(response).to render_template :index
end
###エラー文
undefined local variable or method `response' for RSpec::ExampleGroups::Gyms::Index:Class
##原因
そもそもfeature_specにはresponseオブジェクトがないからfeature_spec内ではresponseは使えない。
##解決法
controller_specでrenderオブジェクトを確認するテストをすればOK.
responseオブジェクトはcontroller_specのためだけにあります。