debian-mirror-gitlab/spec/workers/database/drop_detached_partitions_worker_spec.rb
2021-12-11 22:18:48 +05:30

27 lines
647 B
Ruby

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