diff options
author | José Valim <jose.valim@gmail.com> | 2011-05-06 04:41:24 -0700 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-05-06 04:41:24 -0700 |
commit | be9857c21d9bf3e4c51a159b7d4edef69e203a57 (patch) | |
tree | a284eba8066f1260aeb665f41b3e3f9a9c271f7f /actionpack/test | |
parent | 29dbccff30157622bb799b7ce00fc87bfddaf94a (diff) | |
parent | 65a9563209c741757a9a0177019eff3b10de98a8 (diff) | |
download | rails-be9857c21d9bf3e4c51a159b7d4edef69e203a57.tar.gz rails-be9857c21d9bf3e4c51a159b7d4edef69e203a57.tar.bz2 rails-be9857c21d9bf3e4c51a159b7d4edef69e203a57.zip |
Merge pull request #410 from asanghi/LH6074
distance_of_time_in_words calculates wrong no of years
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/date_helper_test.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/test/template/date_helper_test.rb b/actionpack/test/template/date_helper_test.rb index 12d2410f49..3dd400026c 100644 --- a/actionpack/test/template/date_helper_test.rb +++ b/actionpack/test/template/date_helper_test.rb @@ -121,6 +121,10 @@ class DateHelperTest < ActionView::TestCase start_date = Date.new 1975, 1, 31 end_date = Date.new 1977, 1, 31 assert_equal("about 2 years", distance_of_time_in_words(start_date, end_date)) + + start_date = Date.new 1982, 12, 3 + end_date = Date.new 2010, 11, 30 + assert_equal("almost 28 years", distance_of_time_in_words(start_date, end_date)) end def test_distance_in_words_with_integers |