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

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

require 'spec_helper'
require_migration!

RSpec.describe RemoveGitlabIssueTrackerServiceRecords do
  let(:services) { table(:services) }

  before do
    5.times { services.create!(type: 'GitlabIssueTrackerService') }
    services.create!(type: 'SomeOtherType')
  end

  it 'removes services records of type GitlabIssueTrackerService', :aggregate_failures do
    expect { migrate! }.to change { services.count }.from(6).to(1)
    expect(services.first.type).to eq('SomeOtherType')
    expect(services.where(type: 'GitlabIssueTrackerService')).to be_empty
  end
end