Class: MiniTest::Matchers::ActiveModel::ValidateExclusionMatcher

Inherits:
ValidationMatcher show all
Defined in:
lib/matchers/validate_exclusion_matcher.rb

Instance Method Summary collapse

Methods inherited from ValidationMatcher

#failure_message, #negative_failure_message, #on, #with_message

Methods included from Helpers

#class_of, #to_sentence

Constructor Details

#initialize(attr) ⇒ ValidateExclusionMatcher

Returns a new instance of ValidateExclusionMatcher.



12
13
14
# File 'lib/matchers/validate_exclusion_matcher.rb', line 12

def initialize attr
  super attr, :exclusion
end

Instance Method Details

#descriptionObject



45
46
47
48
49
50
51
# File 'lib/matchers/validate_exclusion_matcher.rb', line 45

def description
  if Array === @not_allowed_values
    super << " not allowing the values: #{to_sentence(@not_allowed_values)}"
  elsif @not_allowed_values
    super << " not allowing the values in #{@not_allowed_values.inspect}"
  end
end

#matches?(subject) ⇒ Boolean

Returns:

  • (Boolean)


21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/matchers/validate_exclusion_matcher.rb', line 21

def matches? subject
  return false unless result = super(subject)

  if Array === @not_allowed_values
    allowed_values = @not_allowed_values - @validator.options[:in].to_a
    if allowed_values.empty?
      @positive_message << ' not allowing all values mentioned'
    else
      @negative_message << ' allowing the values:'
      @negative_message << " #{to_sentence(allowed_values)}"
      result = false
    end
  elsif @not_allowed_values
    if @not_allowed_values == @validator.options[:in]
      @positive_message << " not allowing values in #{@not_allowed_values.inspect}"
    else
      @negative_message << " not allowing values in #{@validator.options[:in].inspect}"
      result = false
    end
  end

  result
end

#to_not_allow(*values) ⇒ Object



16
17
18
19
# File 'lib/matchers/validate_exclusion_matcher.rb', line 16

def to_not_allow *values
  @not_allowed_values = (values.length > 1) ? values.flatten : values[0]
  self
end