gitlab-org--gitlab-foss/spec/support/matchers/metric_counter_matcher.rb

12 lines
223 B
Ruby

RSpec::Matchers.define :increment do |counter|
match do |adapter|
expect(adapter.send(counter))
.to receive(:increment)
.exactly(@exactly || :once)
end
chain :twice do
@exactly = :twice
end
end