Sha256: 6e822a503b7515e1cfe241acbae40570a54928e766e47c60be985a6ab62be1ab

Contents?: true

Size: 1.27 KB

Versions: 4

Compression:

Stored size: 1.27 KB

Contents

module Mongoid
  module Matchers
    module Validations  
      
      class HaveValidationMatcher
      
        def initialize(field, validation_type)
          @field = field.to_s
          @type = validation_type.to_s
        end
                
        def matches?(actual)
          @klass = actual.is_a?(Class) ? actual : actual.class
          
          @validator = @klass.validators_on(@field).detect{|v| v.kind.to_s == @type }
          
          if @validator
            @negative_result_message = "#{@type.inspect} validator on #{@field.inspect}"
            @positive_result_message = "#{@type.inspect} validator on #{@field.inspect}"
          else
            @negative_result_message = "no #{@type.inspect} validator on #{@field.inspect}"
            return false
          end
          
          true
        end
        
        def failure_message_for_should  
          "Expected #{@klass.inspect} to #{description}; instead got #{@negative_result_message}"  
        end
      
        def failure_message_for_should_not  
          "Expected #{@klass.inspect} to not #{description}; instead got #{@positive_result_message}"  
        end
        
        def description
          "validate #{@type} of #{@field.inspect}"
        end
      end     
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
mongoid-rspec-multi-db-1.4.4 lib/matchers/validations.rb
mongoid-rspec-1.4.4 lib/matchers/validations.rb
mongoid-rspec-1.4.3 lib/matchers/validations.rb
mongoid-rspec-1.4.2 lib/matchers/validations.rb