mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
14 lines
368 B
Ruby
14 lines
368 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
require_migration!
|
|
|
|
RSpec.describe ReenqueueDeduplicateLfsObjectsProjects, feature_category: :source_code_management do
|
|
let(:batched_migration) { described_class::MIGRATION }
|
|
|
|
it 'schedules a new batched migration' do
|
|
migrate!
|
|
expect(batched_migration).not_to have_scheduled_batched_migration
|
|
end
|
|
end
|