Skip to content

Commit d1772e6

Browse files
committed
Remove useless yield. Fixes #39.
1 parent 31814b6 commit d1772e6

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

lib/async/redis/context/pipeline.rb

+4-6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ def flush(count = 0)
4646
end
4747
end
4848

49+
def collect
50+
@count.times.map{read_response}
51+
end
52+
4953
def sync
5054
@sync ||= Sync.new(self)
5155
end
@@ -73,12 +77,6 @@ def read_response
7377
end
7478
end
7579

76-
def collect
77-
yield
78-
79-
@count.times.map{read_response}
80-
end
81-
8280
def close
8381
flush
8482
ensure

test/async/redis/context/pipeline.rb

+20-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{pipeline_key_1: '123', pipeline_key_2: '456'}
2121
end
2222

23-
describe '.call' do
23+
with '#call' do
2424
it 'accumulates commands without running them' do
2525
pairs.each do |key, value|
2626
pipeline.call('SET', key, value)
@@ -31,8 +31,26 @@
3131
pairs.each do |key, value|
3232
expect(client.get(key)).to be == value
3333
end
34-
34+
ensure
3535
client.close
3636
end
3737
end
38+
39+
with '#collect' do
40+
it 'accumulates commands and runs them' do
41+
pairs.each do |key, value|
42+
pipeline.call('SET', key, value)
43+
end
44+
45+
pipeline.flush
46+
47+
pairs.each do |key, value|
48+
pipeline.call('GET', key)
49+
end
50+
51+
expect(pipeline.collect).to be == pairs.values
52+
ensure
53+
pipeline.close
54+
end
55+
end
3856
end

0 commit comments

Comments
 (0)