Sha256: fc31a935a1b56c689794601bd81e83ce16e23e5ad7cf674876f9559bcb3fb7c7
Contents?: true
Size: 354 Bytes
Versions: 33
Compression:
Stored size: 354 Bytes
Contents
require 'spec_helper' describe '#llen(key)' do before { @key = 'mock-redis-test:78407' } it 'returns 0 for a nonexistent key' do @redises.llen(@key).should == 0 end it 'returns the length of the list' do 5.times { @redises.lpush(@key, 'X') } @redises.llen(@key).should == 5 end it_should_behave_like 'a list-only command' end
Version data entries
33 entries across 33 versions & 1 rubygems