Improve test coverage of Duration. Closes #7182 [richcollins]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6007 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski 2007-01-21 23:31:41 +00:00
parent 704f2cc6de
commit 59418618b9
1 changed files with 4 additions and 0 deletions

View File

@ -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