debian-mirror-gitlab/spec/migrations/queue_backfill_user_details_fields_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
647 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# frozen_string_literal: true
require 'spec_helper'
require_migration!
2023-04-23 21:23:45 +05:30
RSpec.describe QueueBackfillUserDetailsFields, feature_category: :user_profile do
2023-03-04 22:38:38 +05:30
let!(:batched_migration) { described_class::MIGRATION }
2023-01-13 00:05:48 +05:30
it 'schedules a new batched migration' do
reversible_migration do |migration|
migration.before -> {
expect(batched_migration).not_to have_scheduled_batched_migration
}
migration.after -> {
expect(batched_migration).to have_scheduled_batched_migration(
table_name: :users,
column_name: :id,
interval: described_class::INTERVAL
)
}
end
end
end