Module: ActiveModel::Validations
- Defined in:
- lib/rspec/rails/extensions/active_record/base.rb
Instance Method Summary collapse
-
#errors_on(attribute) ⇒ Object
(also: #error_on)
:call-seq: model.should have(:no).errors_on(:attribute) model.should have(1).error_on(:attribute) model.should have(n).errors_on(:attribute).
Instance Method Details
#errors_on(attribute) ⇒ Object Also known as: error_on
:call-seq:
model.should have(:no).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.
35 36 37 38 |
# File 'lib/rspec/rails/extensions/active_record/base.rb', line 35 def errors_on(attribute) self.valid? [self.errors[attribute]].flatten.compact end |