debian-mirror-gitlab/spec/support/matchers/metric_counter_matcher.rb
2019-10-12 21:52:04 +05:30

14 lines
254 B
Ruby

# frozen_string_literal: true
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