我正在尝试在应用程序控制器上测试将用作前置过滤器的方法。为此,我在测试中设置了一个匿名控制器,并应用了 before 过滤器以确保其正常运行。
目前的测试如下所示:
describe ApplicationController do
controller do
before_filter :authenticated
def index
end
end
describe "user authenticated" do
let(:session_id){"session_id"}
let(:user){OpenStruct.new(:email => "pythonandchips@gmail.com", :name => "Colin Gemmell")}
before do
request.cookies[:session_id] = session_id
UserSession.stub!(:find).with(session_id).and_return(user)
get :index
end
it { should assign_to(:user){user} }
end
end
应用程序控制器是这样的:
class ApplicationController < ActionController::Base
protect_from_forgery
def authenticated
@user = nil
end
end
我的问题是当我运行测试时出现以下错误
1) ApplicationController user authenticated
Failure/Error: get :index
ActionView::MissingTemplate:
Missing template stub_resources/index with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml, :haml], :formats=>[:html], :locale=>[:en, :en]} in view paths "#<RSpec::Rails::ViewRendering::PathSetDelegatorResolver:0x984f310>"
根据文档,在运行控制器测试时不会呈现视图,但这表明该操作不存在存根(这是可以理解的,因为视图不存在)
任何人都知道如何解决这个问题或排除视图。
干杯科林 G