29 lines
656 B
Ruby
29 lines
656 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
require_migration!
|
|
|
|
RSpec.describe BackfillUserNamespace do
|
|
let_it_be(:migration) { described_class::MIGRATION }
|
|
|
|
describe '#up' do
|
|
it 'schedules background jobs for each batch of namespaces' do
|
|
migrate!
|
|
|
|
expect(migration).to have_scheduled_batched_migration(
|
|
table_name: :namespaces,
|
|
column_name: :id,
|
|
interval: described_class::INTERVAL
|
|
)
|
|
end
|
|
end
|
|
|
|
describe '#down' do
|
|
it 'deletes all batched migration records' do
|
|
migrate!
|
|
schema_migrate_down!
|
|
|
|
expect(migration).not_to have_scheduled_batched_migration
|
|
end
|
|
end
|
|
end
|