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

20230523101514_finalize_user_type_migration_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abf3a50674829359c54afac09e8ee96e5a160811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe FinalizeUserTypeMigration, feature_category: :devops_reports do
  it 'finalizes MigrateHumanUserType migration' do
    expect(described_class).to be_finalize_background_migration_of('MigrateHumanUserType')

    migrate!
  end
end