application_controller_spec.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:
Ajax
开发平台:
Others
- require File.dirname(__FILE__) + '/../spec_helper'
- describe ApplicationController do
- it 'safely caches a page' do
- define_spec_public_cache_directory
- file_path = path_for_file_in_spec_public_cache_directory('/test.html')
- File.delete file_path if File.exists? file_path
- File.should_not be_exist(file_path)
- ApplicationController.perform_caching = true
- ApplicationController.cache_page 'test', '/test'
- File.should be_exist(file_path)
- ApplicationController.perform_caching = false
- File.delete(file_path)
- end
- end