From 59418618b9926ae0efebde29eb8765c4895635b9 Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Sun, 21 Jan 2007 23:31:41 +0000 Subject: Improve test coverage of Duration. Closes #7182 [richcollins] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6007 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/test/core_ext/duration_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/duration_test.rb b/activesupport/test/core_ext/duration_test.rb index 22950d8710..55b4df9f80 100644 --- a/activesupport/test/core_ext/duration_test.rb +++ b/activesupport/test/core_ext/duration_test.rb @@ -14,4 +14,8 @@ class DurationTest < Test::Unit::TestCase def test_minus_with_duration_does_not_break_subtraction_of_date_from_date assert_nothing_raised { Date.today - Date.today } end + + def test_plus_with_time + assert_equal 1 + 1.second, 1.second + 1, "Duration + Numeric should == Numeric + Duration" + end end -- cgit v1.2.3