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