Skip to content

Commit 1f7af65

Browse files
author
Cameron Hurst
committed
created unit test for read_multi with array.
1 parent 5365020 commit 1f7af65

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

test/test_active_support.rb

+21
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,27 @@ class TestActiveSupport < Test::Unit::TestCase
6666
end
6767
end
6868
end
69+
70+
should 'support read_multi with an array' do
71+
with_activesupport do
72+
memcached do
73+
connect
74+
case
75+
when rails3?
76+
x = rand_key
77+
y = rand_key
78+
assert_equal({}, @mc.read_multi([x, y]))
79+
assert_equal({}, @dalli.read_multi([x, y]))
80+
@dalli.write(x, '123')
81+
@dalli.write(y, 123)
82+
@mc.write(x, '123')
83+
@mc.write(y, 123)
84+
assert_equal({ x => '123', y => 123 }, @dalli.read_multi([x, y]))
85+
assert_equal({}, @mc.read_multi([x,y]))
86+
end
87+
end
88+
end
89+
end
6990

7091
should 'support raw read_multi' do
7192
with_activesupport do

0 commit comments

Comments
 (0)