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

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

# Assert that this value is a valid color equal to the argument
#
# ```
# expect(value).to be_color('#fff')
# ```
RSpec::Matchers.define :be_color do |expected|
  match do |actual|
    next false unless actual.present?

    if expected
      ::Gitlab::Color.of(actual) == ::Gitlab::Color.of(expected)
    else
      ::Gitlab::Color.of(actual).valid?
    end
  end
end

RSpec::Matchers.alias_matcher :a_valid_color, :be_color