Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Created September 24, 2011 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffkreeftmeijer/1239170 to your computer and use it in GitHub Desktop.
Save jeffkreeftmeijer/1239170 to your computer and use it in GitHub Desktop.
A quick helper that gives you `errors_on`, without having to load up rspec-rails
module ::ActiveModel::Validations
def errors_on(attribute)
self.valid?
[self.errors[attribute]].flatten.compact
end
alias :error_on :errors_on
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment