discourse/spec/jobs/ensure_db_consistency_spec.rb

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

10 lines
191 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Jobs::EnsureDbConsistency do
subject(:job) { described_class.new }
it "is able to complete with no errors" do
job.execute({})
end
end