summaryrefslogtreecommitdiff
path: root/spec/workers/pages_update_configuration_worker_spec.rb
blob: af71f6b3cca2d212514ab99476930afdccc51321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
require "spec_helper"

RSpec.describe PagesUpdateConfigurationWorker do
  let_it_be(:project) { create(:project) }

  describe "#perform" do
    it "does not break" do
      expect { subject.perform(-1) }.not_to raise_error
    end
  end
end