summaryrefslogtreecommitdiff
path: root/spec/support/matchers/have_issuable_counts.rb
blob: 02605d6b70e0bac8e0a6d1aa8b4e658b930d0fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
RSpec::Matchers.define :have_issuable_counts do |opts|
  match do |actual|
    expected_counts = opts.map do |state, count|
      "#{state.to_s.humanize} #{count}"
    end

    actual.within '.issues-state-filters' do
      expected_counts.each do |expected_count|
        expect(actual).to have_content(expected_count)
      end
    end
  end

  description do
    "displays the following issuable counts: #{expected_counts.inspect}"
  end

  failure_message do
    "expected the following issuable counts: #{expected_counts.inspect} to be displayed"
  end
end