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

have_assignee.rb « matchers « support « spec « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e7aa2162b2023ed0e44eb4d3358a0edb31aec6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Matchers
  module HaveAssignee
    RSpec::Matchers.define :have_assignee do |assignee|
      match do |page_object|
        page_object.has_assignee?(assignee)
      end

      match_when_negated do |page_object|
        page_object.has_no_assignee?(assignee)
      end
    end
  end
end