我的Rails 3 controllers / application.rb中有以下内容(我正在尝试编写规范):
rescue_from CanCan::AccessDenied do |exception|
flash[:alert] = t(:access_denied)
if (current_user) then
redirect_to root_url
else
session[:direct_redirect] = request.url
redirect_to new_user_session_url
end
end
我想写一些规格以确保功能正常运行。我已将测试放在spec / controller / application_controller_spec.rb中,并且我应该写一些如下内容:
it "should redirect to the root url" do
controller.stub(:authorize!) { raise CanCan::AccessDenied }
get :index
response.should redirect_to(root_url)
end
问题是get:index line。规范抛出'无路由匹配控制器=>应用程序“错误。”很公平“,我想,并试图路由到不同的控制器。尝试是:
* get :controller => 'purchases', :action => :index
* get purchases_url
* get '/purchases/'
所有这些都被解释为“应用程序”控制器下的操作。
那么,除了编写规范之外,我如何路由到rspec中的控制器?
答案 0 :(得分:10)
要测试那种你想在RSpec中使用匿名控制器的东西。 Relish has a fantastic example here关于他们。
请务必浏览该文档的其他部分。通过他们在那里的例子,我学到了很多东西。
答案 1 :(得分:1)
In your spec:
@controller = ADifferentController.new
expect(@controller).to receive(:this_other_thing)
get :index # or whatever