mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
ext/win32ole/win32ole.c (rbtime2vtdate, vtdate2rbtime): fix
the bug in conversion of milliseconds. [Bug #10258] test/win32ole/test_win32ole_variant.rb (test_conversion_dbl2date_with_msec, test_conversion_time2date_with_msec): use assert_in_delta instead of assert_equal to treat an acceptable error range. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e41fde8b77
commit
8bb93fc8ae
3 changed files with 28 additions and 11 deletions
|
@ -393,7 +393,7 @@ if defined?(WIN32OLE_VARIANT)
|
|||
obj = WIN32OLE_VARIANT.new(41878.524268391200167, WIN32OLE::VARIANT::VT_DATE)
|
||||
t = obj.value
|
||||
assert_equal("2014-08-27 12:34:56", t.strftime('%Y-%m-%d %H:%M:%S'))
|
||||
assert_equal(789, (t.nsec / 1000000).round)
|
||||
assert_in_delta(0.789, t.nsec / 1000000000.0, 0.001)
|
||||
end
|
||||
|
||||
def test_conversion_time2date_with_msec
|
||||
|
@ -401,12 +401,12 @@ if defined?(WIN32OLE_VARIANT)
|
|||
t0 += 0.789
|
||||
t1 = WIN32OLE_VARIANT.new(t0).value
|
||||
assert_equal("2014-08-27 12:34:56", t1.strftime('%Y-%m-%d %H:%M:%S'))
|
||||
assert_equal(789, (t1.nsec / 1000000).round)
|
||||
assert_in_delta(0.789, t1.nsec / 1000000000.0, 0.001)
|
||||
|
||||
t0 = Time.now
|
||||
t1 = WIN32OLE_VARIANT.new(t0).value
|
||||
assert_equal(t0.strftime('%Y-%m-%d %H:%M:%S'), t1.strftime('%Y-%m-%d %H:%M:%S'))
|
||||
assert_equal(t0.nsec.round(-6), t1.nsec.round(-6))
|
||||
assert_in_delta(t0.nsec/1000000000.0, t1.nsec / 1000000000.0, 0.001)
|
||||
end
|
||||
|
||||
# this test failed because of VariantTimeToSystemTime
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue