mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
27 lines
646 B
Ruby
27 lines
646 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "spec_helper"
|
|
|
|
RSpec.describe Database::PartitionManagementWorker, feature_category: :database 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
|