2016-08-18 10:31:44 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe AvatarUploader do
|
2017-02-23 16:54:25 -05:00
|
|
|
let(:uploader) { described_class.new(build_stubbed(:user)) }
|
2016-08-18 10:31:44 -04:00
|
|
|
|
|
|
|
describe '#move_to_cache' do
|
2017-01-02 06:35:15 -05:00
|
|
|
it 'is false' do
|
2017-02-23 16:54:25 -05:00
|
|
|
expect(uploader.move_to_cache).to eq(false)
|
2016-08-18 10:31:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#move_to_store' do
|
2017-01-02 06:35:15 -05:00
|
|
|
it 'is false' do
|
2017-02-23 16:54:25 -05:00
|
|
|
expect(uploader.move_to_store).to eq(false)
|
2016-08-18 10:31:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|