Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pages_update_configuration_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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