提交 fd4e178c 编写于 作者: R Rafael Mendonça França

Merge pull request #11771 from atambo/jruby_assert_distance_of_time_in_words

Remove privatizing of Fixnum#/ from assert_distance_of_time_in_words
......@@ -19,8 +19,6 @@ def to_param
end
def assert_distance_of_time_in_words(from, to=nil)
Fixnum.send :private, :/ # test we avoid Integer#/ (redefined by mathn)
to ||= from
# 0..1 minute with :include_seconds => true
......@@ -123,9 +121,6 @@ def assert_distance_of_time_in_words(from, to=nil)
assert_equal "about 4 hours", distance_of_time_in_words(from + 4.hours, to)
assert_equal "less than 20 seconds", distance_of_time_in_words(from + 19.seconds, to, :include_seconds => true)
assert_equal "less than a minute", distance_of_time_in_words(from + 19.seconds, to, :include_seconds => false)
ensure
Fixnum.send :public, :/
end
def test_distance_in_words
......@@ -133,6 +128,13 @@ def test_distance_in_words
assert_distance_of_time_in_words(from)
end
def test_distance_in_words_with_mathn_required
# test we avoid Integer#/ (redefined by mathn)
require 'mathn'
from = Time.utc(2004, 6, 6, 21, 45, 0)
assert_distance_of_time_in_words(from)
end
def test_time_ago_in_words_passes_include_seconds
assert_equal "less than 20 seconds", time_ago_in_words(15.seconds.ago, :include_seconds => true)
assert_equal "less than a minute", time_ago_in_words(15.seconds.ago, :include_seconds => false)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册