mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-16 15:57:22 +00:00
13 lines
272 B
Ruby
13 lines
272 B
Ruby
# 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
|