Sha256: 8bca8da2d00b114af7bba6cc575e5f712181fae988632180298f1f441afa97a3

Contents?: true

Size: 356 Bytes

Versions: 1

Compression:

Stored size: 356 Bytes

Contents

require 'spec_helper'

module RedisFile
  describe "UPCASE method name will call downcase method" do

    before do
      @client = Redis.new
    end

    it "#ZCOUNT" do
      @client.ZCOUNT("key", 2, 3).should == @client.zcount("key", 2, 3)
    end

    it "#ZSCORE" do
      @client.ZSCORE("key", 2).should == @client.zscore("key", 2)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redis-file-0.4.2 spec/upcase_method_name_spec.rb