aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-03 23:52:02 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-03 23:56:04 +0900
commitf4be7a510eebbe6507ba41d138d7d252f4a68e90 (patch)
tree728b2019d19834983a8589b58134a8a678ed0fdd /test
parent0644f466b0ef017202712882b557ba32863002c4 (diff)
downloadruby-f4be7a510eebbe6507ba41d138d7d252f4a68e90.tar.gz
Added tests for Time#getlocal with UTC offset
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_time.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_time.rb b/test/ruby/test_time.rb
index 4c24c28c97..3f5cb9d3f2 100644
--- a/test/ruby/test_time.rb
+++ b/test/ruby/test_time.rb
@@ -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