Sha256: e3cbbe59020a42378ec67fabde7e23e683584ea099228751eb738e38163c2c06

Contents?: true

Size: 262 Bytes

Versions: 5

Compression:

Stored size: 262 Bytes

Contents

require 'spec_helper'

describe "Redis::Store" do
  before :each do
    @store = Redis::Store.new
  end

  it "should force reconnection" do
    client = @store.instance_variable_get(:@client)
    client.should_receive(:reconnect)
    @store.reconnect
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
instructure-redis-store-1.0.0.2.instructure1 spec/redis/store_spec.rb
instructure-redis-store-1.0.0.1.instructure1 spec/redis/store_spec.rb
redis-store-1.0.0.1 spec/redis/store_spec.rb
redis-store-1.0.0.rc1 spec/redis/store_spec.rb
redis-store-1.0.0.beta5 spec/redis/store_spec.rb