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