discourse/spec/jobs/crawl_topic_link_spec.rb

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

10 lines
230 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Jobs::CrawlTopicLink do
2014-04-05 14:47:25 -04:00
let(:job) { Jobs::CrawlTopicLink.new }
it "needs a topic_link_id" do
expect { job.execute({}) }.to raise_error(Discourse::InvalidParameters)
2014-04-05 14:47:25 -04:00
end
end