Sha256: e774b5132a23fa851ce3089718fe75c05778df12b703f96915e3b3b8249ccb76
Contents?: true
Size: 709 Bytes
Versions: 97
Compression:
Stored size: 709 Bytes
Contents
require "#{File.dirname(__FILE__)}/spec_setup" require 'rack/cache/request' describe 'Rack::Cache::Request' do it 'is marked as no_cache when the Cache-Control header includes the no-cache directive' do request = Rack::Cache::Request.new('HTTP_CACHE_CONTROL' => 'public, no-cache') request.should.be.no_cache end it 'is marked as no_cache when request should not be loaded from cache' do request = Rack::Cache::Request.new('HTTP_PRAGMA' => 'no-cache') request.should.be.no_cache end it 'is not marked as no_cache when neither no-cache directive is specified' do request = Rack::Cache::Request.new('HTTP_CACHE_CONTROL' => 'public') request.should.not.be.no_cache end end
Version data entries
97 entries across 73 versions & 19 rubygems