Skip to content

Commit 133a1ba

Browse files
authored
Release 0.0.2 (#22)
1 parent 73c7974 commit 133a1ba

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

redis-cluster-client.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Gem::Specification.new do |s|
44
s.name = 'redis-cluster-client'
55
s.summary = 'A Redis cluster client for Ruby'
6-
s.version = '0.0.1'
6+
s.version = '0.0.2'
77
s.license = 'MIT'
88
s.homepage = 'https://github.com/redis-rb/redis-cluster-client'
99
s.authors = ['Taishi Kasuga']

test/redis_client/test_cluster.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ def test_zscan
102102
end
103103

104104
def test_pipelined
105+
assert_empty([], @client.pipelined { |_| 1 + 1 })
106+
105107
want = (0..9).map { 'OK' } + (1..3).to_a + %w[PONG] + (0..9).map(&:to_s) + [%w[list 2]]
106108
got = @client.pipelined do |pipeline|
107109
(0..9).each { |i| pipeline.call('SET', "string#{i}", i) }

0 commit comments

Comments
 (0)