cache_controller_spec.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. require File.dirname(__FILE__) + '/../../spec_helper'
  2. describe Admin::CacheController, "rough port of the old functional test" do
  3.   before(:each) do
  4.     request.session = { :user => users(:tobi).id }
  5.   end
  6.   describe 'sweep_html action' do
  7.     it 'should redirect to setting index' do
  8.       get 'sweep_html'
  9.       response.should redirect_to(:controller => '/admin/settings')
  10.     end
  11.   end
  12. end