debian-mirror-gitlab/spec/support/shared_examples/services/service_ping/service_ping_payload_without_restricted_metrics_shared_examples.rb
2022-03-02 08:16:31 +05:30

13 lines
354 B
Ruby

# frozen_string_literal: true
RSpec.shared_examples 'service ping payload without restricted metrics' do
specify do
allow(ApplicationRecord.database).to receive(:flavor).and_return(nil)
aggregate_failures do
restricted_metrics.each do |metric|
is_expected.not_to have_usage_metric metric['key_path']
end
end
end
end