que posean un método age
en mi modelo Waiver
que parece:comparación de fecha con ActiveSupport :: TimeWithZone fallado
def age(date = nil)
if date.nil?
date = Date.today
end
age = 0
unless date_of_birth.nil?
age = date.year - date_of_birth.year
age -= 1 if date < date_of_birth + age.years #for days before birthday
end
return age
end
Entonces tengo una especificación que se parece a:
it "calculates the proper age" do
waiver = FactoryGirl.create(:waiver, date_of_birth: 12.years.ago)
waiver.age.should == 12
end
Cuando ejecutar esta especificación consigo comparison of Date with ActiveSupport::TimeWithZone failed
. ¿Qué estoy haciendo mal?
Failures:
1) Waiver calculates the proper age
Failure/Error: waiver.age.should == 12
ArgumentError:
comparison of Date with ActiveSupport::TimeWithZone failed
# ./app/models/waiver.rb:132:in `<'
# ./app/models/waiver.rb:132:in `age'
# ./spec/models/waiver_spec.rb:23:in `block (2 levels) in <top (required)>'
No sé por qué está fallando pero está trabajando muy bien si se configura a 'fecha_de_nacimiento 12.years.ago. to_date' y no '12.years.ago'. – oldergod