spec/lib/backend/redis/basic_spec.rb in picky-2.7.0 vs spec/lib/backend/redis/basic_spec.rb in picky-3.0.0.pre1
- old
+ new
@@ -1,8 +1,8 @@
require 'spec_helper'
-describe Backend::Redis::Basic do
+describe Picky::Backend::Redis::Basic do
let(:redis) { described_class.new "some_namespace" }
describe 'load, retrieve, backup, delete' do
it 'is nothing they do (at least on the backend)' do
@@ -64,10 +64,10 @@
end
end
describe 'to_s' do
it 'returns the cache path with the default file extension' do
- redis.to_s.should == 'Backend::Redis::Basic(some_namespace:*)'
+ redis.to_s.should == 'Picky::Backend::Redis::Basic(some_namespace:*)'
end
end
end
\ No newline at end of file