discourse/spec/jobs/download_profile_background_from_url_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
351 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Jobs::DownloadProfileBackgroundFromUrl 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