validates :password, :presence => { :on => :create },
            :length => { :within => 4..40 }

and

  validates :password, :presence => { :on => :create },
            :length => { :within => 4..40, :on => :save }

I thought the default for a validation was :on => :save which means on both :create and :update? But when I replace the first with the second specs start failing expected valid? to return false, got true.

What's happening?

link|improve this question

70% accept rate
whats the spec? – Alex Wayne Aug 26 '11 at 23:42
feedback

1 Answer

As you say, :on => :save is the default and means on both update and create, so it's not needed. Perhaps you found a bug, but if i read your question, since we can't see your specs, your specs are passing without the :on => :save. Leave it out and carry on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.