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

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

require 'spec_helper'
require_migration!

RSpec.describe AddIndexToProjectsOnMarkedForDeletionAt do
  it 'correctly migrates up and down' do
    reversible_migration do |migration|
      migration.before -> {
        expect(ActiveRecord::Base.connection.indexes('projects').map(&:name)).not_to include('index_projects_not_aimed_for_deletion')
      }

      migration.after -> {
        expect(ActiveRecord::Base.connection.indexes('projects').map(&:name)).to include('index_projects_not_aimed_for_deletion')
      }
    end
  end
end