Sha256: e61477aaeb6aef1d2c264b91b46b3b18e2e8143b6899c05ba0466bf1e7d450e2

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

module Mongoid
  module Matchers
    module Validations
      class ValidateInclusionMatcher < HaveValidationMatcher
        def initialize(field)
          super(field, :inclusion)
        end

        def to_allow(*values)
          @allowed_values = values.flatten
          self
        end

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

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

          result
        end

        def description
          if @allowed_values
            super << " allowing the values: #{to_sentence(@allowed_values)}"
          end
        end
      end

      def validate_inclusion_of(field)
        ValidateInclusionMatcher.new(field)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongoid-minitest-0.1.1 lib/matchers/validations/inclusion.rb
mongoid-minitest-0.1.0 lib/matchers/validations/inclusion.rb