Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/support/matchers/have_child_pipeline.rb')
-rw-r--r--qa/spec/support/matchers/have_child_pipeline.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/qa/spec/support/matchers/have_child_pipeline.rb b/qa/spec/support/matchers/have_child_pipeline.rb
deleted file mode 100644
index d05d9d4209a..00000000000
--- a/qa/spec/support/matchers/have_child_pipeline.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-module Matchers
- module HaveChildPipeline
- RSpec::Matchers.define :have_child_pipeline do
- match do |page_object|
- page_object.has_child_pipeline?
- end
-
- match_when_negated do |page_object|
- page_object.has_no_child_pipeline?
- end
- end
- end
-end