class B < ActiveRecord::Base
belongs_to :a
validates_numericality_of :some_attribute, :greater_than =>
0, :allow_blank=>true
def some_attribute
a.numeric_attr * read_attribute(:some_attribute)
end
…
If I create an instance of my class B in rspec with factory_girl w.out
a parent (but not required!) instance of class A, I get the following
error: “undefined method `numeric_attr’ for nil:NilClass”.
Why? Is this an apparent idiosyncrasy of using rspec and factory_girl
together?
On a Rails note, this seems to suggest that attributes are checked
from their accessors before the save, whereas I had assumed my
some_attribute accessor would not be called at all during
validation…
(Thank you David, this is one of the better groups I’ve lately
monitored, and a fine complement to your book…)
Thanks,
Lille
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.