From a6e5d29e0839540b6b5a1a89bcb3b1d037120474 Mon Sep 17 00:00:00 2001 From: Tom Lea Date: Tue, 16 Sep 2008 09:18:44 +0100 Subject: Added deprecated warning messages to Float#months and Float#years deprications. --- activesupport/test/core_ext/duration_test.rb | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/duration_test.rb b/activesupport/test/core_ext/duration_test.rb index 7b767c819e..d1b15fd2ef 100644 --- a/activesupport/test/core_ext/duration_test.rb +++ b/activesupport/test/core_ext/duration_test.rb @@ -66,20 +66,22 @@ class DurationTest < Test::Unit::TestCase end def test_deprecated_fractional_years - assert_deprecated{1.0.years} - assert_deprecated{1.5.years} + years_re = /Fractional years are not respected\. Convert value to integer before calling #years\./ + assert_deprecated(years_re){1.0.years} + assert_deprecated(years_re){1.5.years} assert_not_deprecated{1.years} - assert_deprecated{1.0.year} - assert_deprecated{1.5.year} + assert_deprecated(years_re){1.0.year} + assert_deprecated(years_re){1.5.year} assert_not_deprecated{1.year} end def test_deprecated_fractional_months - assert_deprecated{1.5.months} - assert_deprecated{1.0.months} + months_re = /Fractional months are not respected\. Convert value to integer before calling #months\./ + assert_deprecated(months_re){1.5.months} + assert_deprecated(months_re){1.0.months} assert_not_deprecated{1.months} - assert_deprecated{1.5.month} - assert_deprecated{1.0.month} + assert_deprecated(months_re){1.5.month} + assert_deprecated(months_re){1.0.month} assert_not_deprecated{1.month} end -- cgit v1.2.3