gitlab-org--gitlab-foss/spec/workers/database/partition_management_worker...

27 lines
617 B
Ruby

# frozen_string_literal: true
require "spec_helper"
RSpec.describe Database::PartitionManagementWorker do
describe '#perform' do
subject { described_class.new.perform }
before do
allow(Gitlab::Database::Partitioning).to receive(:sync_partitions)
allow(Gitlab::Database::Partitioning).to receive(:report_metrics)
end
it 'syncs partitions' do
expect(Gitlab::Database::Partitioning).to receive(:sync_partitions)
subject
end
it 'reports partition metrics' do
expect(Gitlab::Database::Partitioning).to receive(:report_metrics)
subject
end
end
end