summaryrefslogtreecommitdiff
path: root/qa/spec/support/matchers/have_related_issue_item.rb
blob: 89403f2422abee1a5c10fdbdb9013a1f48fe0551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Matchers
  module HaveRelatedIssueItem
    RSpec::Matchers.define :have_related_issue_item do
      match do |page_object|
        page_object.has_related_issue_item?
      end

      match_when_negated do |page_object|
        page_object.has_no_related_issue_item?
      end
    end
  end
end