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

20220120094340_drop_position_from_security_findings_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ad9a8220c39c16e27a16f049a011728954bf9d4 (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!('drop_position_from_security_findings')

RSpec.describe DropPositionFromSecurityFindings do
  let(:events) { table(:security_findings) }

  it 'correctly migrates up and down' do
    reversible_migration do |migration|
      migration.before -> {
        expect(events.column_names).to include('position')
      }

      migration.after -> {
        events.reset_column_information
        expect(events.column_names).not_to include('position')
      }
    end
  end
end