require 'rails_helper'
describe StaticPagesController, :type => :controller do
context "GET #index" do
before do
get :index
end
it "responds successfully with an HTTP 200 status code" do
expect(response).to be_success
expect(response).to have_http_status(200)
end
it "renders the index template" do
expect(response).to render_template("index")
end
end
end
错误
答案 0 :(得分:4)
我认为错误是非常自我解释的。
assigns
和assert_template
已从rails
中提取到单独的rails-controller-testing
宝石中。您是否已将该宝石添加到Gemfile
?
请致电rails-controller-testing获取更多信息。