1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Added tests for Time#getlocal with UTC offset

This commit is contained in:
Nobuyoshi Nakada 2021-01-03 23:52:02 +09:00
parent 0644f466b0
commit f4be7a510e
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -1212,6 +1212,14 @@ class TestTime < Test::Unit::TestCase
}
end
def test_getlocal_utc_offset
t = Time.gm(2000)
assert_equal [00, 30, 21, 31, 12, 1999], t.getlocal("-02:30").to_a[0, 6]
assert_equal [00, 00, 9, 1, 1, 2000], t.getlocal("+09:00").to_a[0, 6]
assert_equal [20, 29, 21, 31, 12, 1999], t.getlocal("-02:30:40").to_a[0, 6]
assert_equal [35, 10, 9, 1, 1, 2000], t.getlocal("+09:10:35").to_a[0, 6]
end
def test_getlocal_nil
now = Time.now
now2 = nil