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.

13 lines
249 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
2014-04-05 14:47:25 -04:00
describe Jobs::CrawlTopicLink do
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