mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 13:31:44 +08:00
e219588142
* Introduced fab!, a helper that creates database state for a group It's almost identical to let_it_be, except: 1. It creates a new object for each test by default, 2. You can disable it using PREFABRICATION=0
19 lines
394 B
Ruby
19 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Jobs::DownloadAvatarFromUrl do
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
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
|