34 lines
1 KiB
Ruby
34 lines
1 KiB
Ruby
require 'spec_helper'
|
|
require Rails.root.join('db', 'migrate', '20170622135451_rename_duplicated_variable_key.rb')
|
|
|
|
describe RenameDuplicatedVariableKey, :migration do
|
|
let(:variables) { table(:ci_variables) }
|
|
let(:projects) { table(:projects) }
|
|
|
|
before do
|
|
projects.create!(id: 1)
|
|
variables.create!(id: 1, key: 'key1', project_id: 1)
|
|
variables.create!(id: 2, key: 'key2', project_id: 1)
|
|
variables.create!(id: 3, key: 'keyX', project_id: 1)
|
|
variables.create!(id: 4, key: 'keyX', project_id: 1)
|
|
variables.create!(id: 5, key: 'keyY', project_id: 1)
|
|
variables.create!(id: 6, key: 'keyX', project_id: 1)
|
|
variables.create!(id: 7, key: 'key7', project_id: 1)
|
|
variables.create!(id: 8, key: 'keyY', project_id: 1)
|
|
end
|
|
|
|
it 'correctly remove duplicated records with smaller id' do
|
|
migrate!
|
|
|
|
expect(variables.pluck(:id, :key)).to contain_exactly(
|
|
[1, 'key1'],
|
|
[2, 'key2'],
|
|
[3, 'keyX_3'],
|
|
[4, 'keyX_4'],
|
|
[5, 'keyY_5'],
|
|
[6, 'keyX'],
|
|
[7, 'key7'],
|
|
[8, 'keyY']
|
|
)
|
|
end
|
|
end
|