Public instance methods
model.should have(:no).errors_on(:attribute)
model.should have(1).error_on(:attribute)
model.should have(n).errors_on(:attribute)
model.should have(1).error_on(:attribute)
model.should have(n).errors_on(:attribute)
Extension to enhance should have on AR Model instances. Calls model.valid? in order to prepare the object’s errors object.
[show source]
# File lib/spec/rails/extensions/active_record/base.rb, line 28 def errors_on(attribute) self.valid? [self.errors.on(attribute)].flatten.compact end