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

Ajax

开发平台:

Others

  1. require File.dirname(__FILE__) + '/../spec_helper'
  2. describe ApplicationController do
  3.   it 'safely caches a page' do
  4.     define_spec_public_cache_directory
  5.     file_path = path_for_file_in_spec_public_cache_directory('/test.html')
  6.     File.delete file_path if File.exists? file_path
  7.     File.should_not be_exist(file_path)
  8.     ApplicationController.perform_caching = true
  9.     ApplicationController.cache_page 'test', '/test'
  10.     File.should be_exist(file_path)
  11.     ApplicationController.perform_caching = false
  12.     File.delete(file_path)
  13.   end
  14. end