module Mongoid::Matchers::Validations
Public Instance Methods
custom_validate(field)
click to toggle source
# File lib/matchers/validations/custom_validation_of.rb, line 42 def custom_validate(field) ValidateWithCustomValidatorMatcher.new(field) end
validate_acceptance_of(field)
click to toggle source
# File lib/matchers/validations/acceptance_of.rb, line 4 def validate_acceptance_of(field) HaveValidationMatcher.new(field, :acceptance) end
validate_associated(association_name)
click to toggle source
# File lib/matchers/validations/associated.rb, line 14 def validate_associated(association_name) ValidateAssociatedMatcher.new(association_name) end
validate_confirmation_of(field)
click to toggle source
# File lib/matchers/validations/confirmation_of.rb, line 17 def validate_confirmation_of(field) ValidateConfirmationOfMatcher.new(field) end
validate_exclusion_of(field)
click to toggle source
# File lib/matchers/validations/exclusion_of.rb, line 44 def validate_exclusion_of(field) ValidateExclusionOfMatcher.new(field) end
validate_format_of(field)
click to toggle source
# File lib/matchers/validations/format_of.rb, line 66 def validate_format_of(field) ValidateFormatOfMatcher.new(field) end
validate_inclusion_of(field)
click to toggle source
# File lib/matchers/validations/inclusion_of.rb, line 44 def validate_inclusion_of(field) ValidateInclusionOfMatcher.new(field) end
validate_length_of(field)
click to toggle source
# File lib/matchers/validations/length_of.rb, line 142 def validate_length_of(field) ValidateLengthOfMatcher.new(field) end
validate_numericality_of(field)
click to toggle source
# File lib/matchers/validations/numericality_of.rb, line 85 def validate_numericality_of(field) ValidateNumericalityOfMatcher.new(field) end
validate_presence_of(field)
click to toggle source
# File lib/matchers/validations/presence_of.rb, line 4 def validate_presence_of(field) HaveValidationMatcher.new(field, :presence) end
validate_uniqueness_of(field)
click to toggle source
# File lib/matchers/validations/uniqueness_of.rb, line 77 def validate_uniqueness_of(field) ValidateUniquenessOfMatcher.new(field) end