aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/duration_test.rb
diff options
context:
space:
mode:
authorTom Lea <commit@tomlea.co.uk>2008-09-11 16:41:19 +0100
committergbuesing <gbuesing@gmail.com>2008-10-13 20:00:09 -0500
commitd599b8000968047b4095dd8ff6c8ef10bb4ed462 (patch)
tree97ff0ef8ef8aa110748ec24da71d3c56568b6b53 /activesupport/test/core_ext/duration_test.rb
parent27c70ff386e76ed0af41b53f2ba8cdb09bc94ace (diff)
downloadrails-d599b8000968047b4095dd8ff6c8ef10bb4ed462.tar.gz
rails-d599b8000968047b4095dd8ff6c8ef10bb4ed462.tar.bz2
rails-d599b8000968047b4095dd8ff6c8ef10bb4ed462.zip
Deprecated Float#years and Float#months, moved Numeric#years and Numeric#months into Integer.
Diffstat (limited to 'activesupport/test/core_ext/duration_test.rb')
-rw-r--r--activesupport/test/core_ext/duration_test.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/duration_test.rb b/activesupport/test/core_ext/duration_test.rb
index b01fbf2efb..7b767c819e 100644
--- a/activesupport/test/core_ext/duration_test.rb
+++ b/activesupport/test/core_ext/duration_test.rb
@@ -64,6 +64,24 @@ class DurationTest < Test::Unit::TestCase
assert_equal((7 * 36).hours.ago, 1.5.weeks.ago)
assert_equal((7 * 24 * 1.7).hours.ago, 1.7.weeks.ago)
end
+
+ def test_deprecated_fractional_years
+ assert_deprecated{1.0.years}
+ assert_deprecated{1.5.years}
+ assert_not_deprecated{1.years}
+ assert_deprecated{1.0.year}
+ assert_deprecated{1.5.year}
+ assert_not_deprecated{1.year}
+ end
+
+ def test_deprecated_fractional_months
+ assert_deprecated{1.5.months}
+ assert_deprecated{1.0.months}
+ assert_not_deprecated{1.months}
+ assert_deprecated{1.5.month}
+ assert_deprecated{1.0.month}
+ assert_not_deprecated{1.month}
+ end
def test_since_and_ago_anchored_to_time_now_when_time_zone_default_not_set
Time.zone_default = nil