debian-mirror-gitlab/qa/spec/support/matchers/have_snippet_description.rb
2021-02-22 17:27:13 +05:30

16 lines
365 B
Ruby

# frozen_string_literal: true
module Matchers
module HaveSnippetDescription
RSpec::Matchers.define :have_snippet_description do |description|
match do |page_object|
page_object.has_snippet_description?(description)
end
match_when_negated do |page_object|
page_object.has_no_snippet_description?
end
end
end
end