2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-07 04:03:26 -04:00
|
|
|
RSpec.describe Jobs::DownloadProfileBackgroundFromUrl do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
2018-05-07 04:03:26 -04:00
|
|
|
|
|
|
|
describe 'when url is invalid' do
|
|
|
|
it 'should not raise any error' do
|
|
|
|
expect do
|
|
|
|
described_class.new.execute(
|
|
|
|
url: '/assets/something/nice.jpg',
|
|
|
|
user_id: user.id
|
|
|
|
)
|
|
|
|
end.to_not raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|