spec/lib/indexed/bundle/redis_spec.rb in picky-2.7.0 vs spec/lib/indexed/bundle/redis_spec.rb in picky-3.0.0.pre1
- old
+ new
@@ -1,15 +1,15 @@
require 'spec_helper'
-describe Indexed::Bundle::Redis do
+describe Picky::Indexed::Bundle::Redis do
before(:each) do
@backend = stub :backend
- Backend::Redis.stub! :new => @backend
+ Picky::Backend::Redis.stub! :new => @backend
- @index = Index::Memory.new :some_index, source: []
- @category = Category.new :some_category, @index
+ @index = Picky::Indexes::Memory.new :some_index, source: []
+ @category = Picky::Category.new :some_category, @index
@similarity = stub :similarity
@bundle = described_class.new :some_name, @category, @similarity
end
\ No newline at end of file