2023-01-13 00:05:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
require_migration!
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.describe QueuePopulateProjectsStarCount, feature_category: :users do
|
|
|
|
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: :projects,
|
|
|
|
column_name: :id,
|
|
|
|
interval: described_class::DELAY_INTERVAL
|
|
|
|
)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|