We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df5e855 commit 9b44c1dCopy full SHA for 9b44c1d
spec/redis_legacy_key_naming_spec.rb
@@ -256,25 +256,6 @@ def id
256
obj2.redis_value2.should.be.kind_of(Redis::Value)
257
obj2.redis_value.key.should == 'dynamic_class2:1:redis_value'
258
obj2.redis_value2.key.should == 'dynamic_class2:1:redis_value2'
259
- end
260
-
261
- it 'issues a warning if a key name change is detected' do
262
- module Nested
263
- class LevelNine
264
- include Redis::Objects
265
- self.redis = Redis.new(:host => REDIS_HOST, :port => REDIS_PORT)
266
267
- def id
268
- 1
269
270
271
- value :redis_value
272
273
274
275
- obj = Nested::LevelNine.new
276
- val = SecureRandom.hex(10)
277
- obj.redis_value = val
278
- obj.redis_value.should == val
279
end
280
0 commit comments