summaryrefslogtreecommitdiff
path: root/qa/spec/support/matchers/have_related_issue_item.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-02-18 10:34:06 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-18 10:34:06 +0000
commit859a6fb938bb9ee2a317c46dfa4fcc1af49608f0 (patch)
treed7f2700abe6b4ffcb2dcfc80631b2d87d0609239 /qa/spec/support/matchers/have_related_issue_item.rb
parent446d496a6d000c73a304be52587cd9bbc7493136 (diff)
downloadgitlab-ce-859a6fb938bb9ee2a317c46dfa4fcc1af49608f0.tar.gz
Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42
Diffstat (limited to 'qa/spec/support/matchers/have_related_issue_item.rb')
-rw-r--r--qa/spec/support/matchers/have_related_issue_item.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/qa/spec/support/matchers/have_related_issue_item.rb b/qa/spec/support/matchers/have_related_issue_item.rb
deleted file mode 100644
index 89403f2422a..00000000000
--- a/qa/spec/support/matchers/have_related_issue_item.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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