0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 09:05:23 +08:00
discourse/spec/jobs/download_avatar_from_url_spec.rb
2023-01-09 11:49:28 +00:00

13 lines
340 B
Ruby
Vendored

# frozen_string_literal: true
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