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, 0 insertions, 15 deletions
diff --git a/qa/spec/support/matchers/have_issue.rb b/qa/spec/support/matchers/have_issue.rb
deleted file mode 100644
index 7ef30f22726..00000000000
--- a/qa/spec/support/matchers/have_issue.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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