Skip to content

Instantly share code, notes, and snippets.

@webmat
Created June 7, 2010 21:01
Show Gist options
  • Save webmat/429190 to your computer and use it in GitHub Desktop.
Save webmat/429190 to your computer and use it in GitHub Desktop.
# Why even the simple validations for ActiveRecord must also be tested.
# Can you spot the error?
validates_numericality_of :discount, :allow_nil => false,
:greater_than_or_equal => 0,
:less_than_or_equal_to => 100,
:if => :published?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment