I have a Mongoid model, and the validations aren't working, at all. No error messages, no problems, but I can insert invalid data.
class Place
include Mongoid::Document
include Mongoid::Timestamps
field :address, :type => String, :required => true
field :headline, :type => String, :required => true
validates :headline, :presence => true, :length => { :minimum => 10, :allow_blank => false }
validates :address, :presence => true, :length => { :minimum => 5, :allow_blank => false }
# ...
end
Even though it looks like it's supposed to work, the model saves without throwing an error (value nil or "abc", for example).
How do I get them to work?