File tree 2 files changed +24
-8
lines changed
2 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ def flush(count = 0)
46
46
end
47
47
end
48
48
49
+ def collect
50
+ @count . times . map { read_response }
51
+ end
52
+
49
53
def sync
50
54
@sync ||= Sync . new ( self )
51
55
end
@@ -73,12 +77,6 @@ def read_response
73
77
end
74
78
end
75
79
76
- def collect
77
- yield
78
-
79
- @count . times . map { read_response }
80
- end
81
-
82
80
def close
83
81
flush
84
82
ensure
Original file line number Diff line number Diff line change 20
20
{ pipeline_key_1 : '123' , pipeline_key_2 : '456' }
21
21
end
22
22
23
- describe '. call' do
23
+ with '# call' do
24
24
it 'accumulates commands without running them' do
25
25
pairs . each do |key , value |
26
26
pipeline . call ( 'SET' , key , value )
31
31
pairs . each do |key , value |
32
32
expect ( client . get ( key ) ) . to be == value
33
33
end
34
-
34
+ ensure
35
35
client . close
36
36
end
37
37
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
38
56
end
You can’t perform that action at this time.
0 commit comments