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/remove_flowdock_integration_records_spec.rb')
-rw-r--r--spec/migrations/remove_flowdock_integration_records_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/migrations/remove_flowdock_integration_records_spec.rb b/spec/migrations/remove_flowdock_integration_records_spec.rb
new file mode 100644
index 00000000000..3f57515d18b
--- /dev/null
+++ b/spec/migrations/remove_flowdock_integration_records_spec.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require Rails.root.join('db/post_migrate/20221129124240_remove_flowdock_integration_records.rb')
+
+RSpec.describe RemoveFlowdockIntegrationRecords, feature_category: :integrations do
+ let(:integrations) { table(:integrations) }
+
+ before do
+ integrations.create!(type_new: 'Integrations::Flowdock')
+ integrations.create!(type_new: 'SomeOtherType')
+ end
+
+ it 'removes integrations records of type_new Integrations::Flowdock' do
+ expect(integrations.count).to eq(2)
+
+ migrate!
+
+ expect(integrations.count).to eq(1)
+ expect(integrations.first.type_new).to eq('SomeOtherType')
+ expect(integrations.where(type_new: 'Integrations::Flowdock')).to be_empty
+ end
+end