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

update_legacy_diff_notes_type_for_import_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d625b60ff50df57a822775d5726f39bb785296dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20170927112318_update_legacy_diff_notes_type_for_import.rb')

describe UpdateLegacyDiffNotesTypeForImport, :migration do
  let(:notes) { table(:notes) }

  before do
    notes.inheritance_column = nil

    notes.create(type: 'Note')
    notes.create(type: 'LegacyDiffNote')
    notes.create(type: 'Github::Import::Note')
    notes.create(type: 'Github::Import::LegacyDiffNote')
  end

  it 'updates the notes type' do
    migrate!

    expect(notes.pluck(:type))
      .to contain_exactly('Note', 'Github::Import::Note', 'LegacyDiffNote', 'LegacyDiffNote')
  end
end