summaryrefslogtreecommitdiff
path: root/spec/support/matchers/metric_counter_matcher.rb
blob: f0d52b9b149e503202fa8fa74d53ca941b2ca617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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