spec/lib/backend/file/basic_spec.rb in picky-2.7.0 vs spec/lib/backend/file/basic_spec.rb in picky-3.0.0.pre1
- old
+ new
@@ -1,8 +1,8 @@
require 'spec_helper'
-describe Backend::File::Basic do
+describe Picky::Backend::File::Basic do
let(:file) { described_class.new 'some/cache/path/to/file' }
describe 'backup_file_path_of' do
it 'returns a backup path relative to the path' do
@@ -16,10 +16,10 @@
end
end
describe 'to_s' do
it 'returns the cache path with the default file extension' do
- file.to_s.should == 'Backend::File::Basic(some/cache/path/to/file.index)'
+ file.to_s.should == 'Picky::Backend::File::Basic(some/cache/path/to/file.index)'
end
end
end
\ No newline at end of file