Sha256: 9fe118431e06d00b22023bd112cb28218ef0552f3da5da0519806f58d0edf22e
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
# Copyright (c) 2011 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the MIT license. require File.expand_path('../../../../spec/helper', __FILE__) spec_require 'redis' spec_precondition 'redis is running' do cache = Redis.new cache['active'] = true end describe Ramaze::Cache::Redis do Ramaze.options.cache.names = [:one, :two] Ramaze.options.cache.default = Ramaze::Cache::Redis Ramaze.setup_dependencies cache = Ramaze::Cache.one hello = 'Hello, World!' should 'store without ttl' do cache.store(:hello, hello).should == hello end should 'fetch' do cache.fetch(:hello).should == hello end should 'delete' do cache.delete(:hello) cache.fetch(:hello).should == nil end should 'delete two key/value pairs at once' do cache.store(:hello, hello).should == hello cache.store(:ramaze, 'ramaze').should == 'ramaze' cache.delete(:hello, :ramaze) cache.fetch(:hello).should == nil cache.fetch(:innate).should == nil end should 'store with ttl' do cache.store(:hello, @hello, :ttl => 0.2) cache.fetch(:hello).should == @hello sleep 0.3 cache.fetch(:hello).should == nil end should 'clear' do cache.store(:hello, @hello) cache.fetch(:hello).should == @hello cache.clear cache.fetch(:hello).should == nil end should 'use a custom set of options' do klass = Ramaze::Cache::Redis.using(:answer => 42) klass.options[:answer].should == 42 klass.new.options[:answer].should == 42 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ramaze-2012.03.07 | spec/ramaze/cache/redis.rb |