spec/functional/backends/redis_spec.rb in picky-3.6.16 vs spec/functional/backends/redis_spec.rb in picky-4.0.0pre1
- old
+ new
@@ -55,10 +55,10 @@
end
it 'handles removing with three entries' do
data.add Book.new(2, 'title', 'author')
data.add Book.new(3, 'title', 'author')
- books.search('title').ids.should == ['3', '2', '1'] # TODO Should be ['3', '2', '1']
+ books.search('title').ids.should == ['3', '2', '1']
data.remove '1'
books.search('title').ids.should == ['3', '2']
end
\ No newline at end of file