Sha256: f3810294651a4a5aee8e2922d064161095be0f821d375069f3b11d89a7367d55
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
require 'spec_helper' describe '#sdiffstore(destination, key [, key, ...])' do before do @numbers = 'mock-redis-test:sdiffstore:numbers' @evens = 'mock-redis-test:sdiffstore:evens' @primes = 'mock-redis-test:sdiffstore:primes' @destination = 'mock-redis-test:sdiffstore:destination' (1..10).each { |i| @redises.sadd(@numbers, i) } [2, 4, 6, 8, 10].each { |i| @redises.sadd(@evens, i) } [2, 3, 5, 7].each { |i| @redises.sadd(@primes, i) } end it 'returns the number of elements in the resulting set' do @redises.sdiffstore(@destination, @numbers, @evens).should == 5 end it 'stores the resulting set' do @redises.sdiffstore(@destination, @numbers, @evens) @redises.smembers(@destination).should == %w[9 7 5 3 1] end it 'does not store empty sets' do @redises.sdiffstore(@destination, @numbers, @numbers).should == 0 @redises.get(@destination).should be_nil end it 'treats missing keys as empty sets' do @redises.sdiffstore(@destination, @evens, 'mock-redis-test:nonesuch') @redises.smembers(@destination).should == %w[10 8 6 4 2] end it 'removes existing elements in destination' do @redises.sadd(@destination, 42) @redises.sdiffstore(@destination, @primes) @redises.smembers(@destination).should == %w[7 5 3 2] end it 'raises an error if given 0 sets' do lambda do @redises.sdiffstore(@destination) end.should raise_error(RuntimeError) end it 'raises an error if any argument is not a a set' do @redises.set('mock-redis-test:notset', 1) lambda do @redises.sdiffstore(@destination, @numbers, 'mock-redis-test:notset') end.should raise_error(RuntimeError) lambda do @redises.sdiffstore(@destination, 'mock-redis-test:notset', @numbers) end.should raise_error(RuntimeError) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mock_redis-0.15.0 | spec/commands/sdiffstore_spec.rb |