テストは初めてですが、いくつかのコントローラーテストに合格するのに苦労しています。
次のコントローラーテストはエラーをスローします。
expecting <"index"> but rendering with <"">
コントローラーの仕様の1つに次のものがあります。
require 'spec_helper'
describe NasController do
render_views
login_user
describe "GET #nas" do
it "populates an array of devices" do
@location = FactoryGirl.create(:location)
@location.users << @current_user
@nas = FactoryGirl.create(:nas, location_id: @location.id )
get :index
assigns(:nas).should eq([@nas])
end
it "renders the :index view" do
response.should render_template(:index)
end
end
私のコントローラーマクロには、次のものがあります。
def login_user
before(:each) do
@request.env["devise.mapping"] = Devise.mappings[:user]
@current_user = FactoryGirl.create(:user)
@current_user.roles << Role.first
sign_in @current_user
User.current_user = @current_user
@user = @current_user
@ability = Ability.new(@current_user)
end
end
私はdeviseとcancanを使用していて、彼らのガイドに従っています。テスト。ユーザーは以前にサインインしていて、インデックスアクションを表示できると思います。
テストに合格するにはどうすればよいですか?
-更新1--
コントローラーコード:
class NasController < ApplicationController
before_filter :authenticate_user!
load_and_authorize_resource
respond_to :js
def index
if params[:location_id]
...
else
@nas = Nas.accessible_by(current_ability).page(params[:page]).order(sort_column + ' ' + sort_direction)
respond_to do |format|
format.html # show.html.erb
end
end
end