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

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

require 'spec_helper'
require_migration!

RSpec.describe AddTypeToHttpIntegrations, feature_category: :incident_management do
  let(:integrations) { table(:alert_management_http_integrations) }

  it 'correctly migrates up and down' do
    reversible_migration do |migration|
      migration.before -> {
        expect(integrations.column_names).not_to include('type_identifier')
      }

      migration.after -> {
        integrations.reset_column_information
        expect(integrations.column_names).to include('type_identifier')
      }
    end
  end
end