summaryrefslogtreecommitdiff
path: root/spec/migrations/20220324165436_schedule_backfill_project_settings_spec.rb
blob: a8014e73bf06be2b639a11257546aeabae761fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe ScheduleBackfillProjectSettings do
  let_it_be(:migration) { described_class::MIGRATION }

  describe '#up' do
    it 'schedules background jobs for each batch of projects' do
      migrate!

      expect(migration).to(
        have_scheduled_batched_migration(
          table_name: :projects,
          column_name: :id,
          interval: described_class::INTERVAL
        )
      )
    end
  end
end