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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/migrations/20230419105225_remove_phabricator_from_application_settings_spec.rb')
-rw-r--r--spec/migrations/20230419105225_remove_phabricator_from_application_settings_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/migrations/20230419105225_remove_phabricator_from_application_settings_spec.rb b/spec/migrations/20230419105225_remove_phabricator_from_application_settings_spec.rb
new file mode 100644
index 00000000000..df84c8efd05
--- /dev/null
+++ b/spec/migrations/20230419105225_remove_phabricator_from_application_settings_spec.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require_migration!
+
+RSpec.describe RemovePhabricatorFromApplicationSettings, feature_category: :importers do
+ let(:settings) { table(:application_settings) }
+ let(:import_sources_with_phabricator) { %w[phabricator github git bitbucket bitbucket_server] }
+ let(:import_sources_without_phabricator) { %w[github git bitbucket bitbucket_server] }
+
+ describe "#up" do
+ it 'removes phabricator and preserves existing valid import sources' do
+ record = settings.create!(import_sources: import_sources_with_phabricator)
+
+ migrate!
+
+ expect(record.reload.import_sources).to start_with('---')
+
+ expect(ApplicationSetting.last.import_sources).to eq(import_sources_without_phabricator)
+ end
+ end
+end