summaryrefslogtreecommitdiff
path: root/qa/spec/support/matchers/have_issue.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/support/matchers/have_issue.rb')
-rw-r--r--qa/spec/support/matchers/have_issue.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/qa/spec/support/matchers/have_issue.rb b/qa/spec/support/matchers/have_issue.rb
new file mode 100644
index 00000000000..7ef30f22726
--- /dev/null
+++ b/qa/spec/support/matchers/have_issue.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+module Matchers
+ module HaveIssue
+ RSpec::Matchers.define :have_issue do |issue|
+ match do |page_object|
+ page_object.has_issue?(issue)
+ end
+
+ match_when_negated do |page_object|
+ page_object.has_no_issue?(issue)
+ end
+ end
+ end
+end