debian-mirror-gitlab/spec/lib/gitlab/ci/artifacts/metrics_spec.rb

23 lines
645 B
Ruby
Raw Normal View History

2021-04-17 20:07:23 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Ci::Artifacts::Metrics, :prometheus do
let(:metrics) { described_class.new }
describe '#increment_destroyed_artifacts' do
context 'when incrementing by more than one' do
let(:counter) { metrics.send(:destroyed_artifacts_counter) }
it 'increments a single counter' do
2021-12-11 22:18:48 +05:30
subject.increment_destroyed_artifacts_count(10)
subject.increment_destroyed_artifacts_count(20)
subject.increment_destroyed_artifacts_count(30)
2021-04-17 20:07:23 +05:30
expect(counter.get).to eq 60
expect(counter.values.count).to eq 1
end
end
end
end