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

20230504084524_remove_gitlab_import_source_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2442359e87b5fdfe01ae858d58c34ea1b64a00f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe RemoveGitlabImportSource, feature_category: :importers do
  let(:settings) { table(:application_settings) }
  let(:import_sources_with_gitlab) { %w[github git gitlab bitbucket bitbucket_server] }
  let(:import_sources_without_gitlab) { %w[github git bitbucket bitbucket_server] }

  describe "#up" do
    it 'removes gitlab and preserves existing valid import sources' do
      record = settings.create!(import_sources: import_sources_with_gitlab)

      migrate!

      expect(record.reload.import_sources).to start_with('---')

      expect(ApplicationSetting.last.import_sources).to eq(import_sources_without_gitlab)
    end
  end
end