summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2024-10-14 13:55:55 +0900
committerNobuyoshi Nakada <[email protected]>2024-10-14 13:55:55 +0900
commit9611c619ac60e9aeb0341b0c8cf322a42707ce38 (patch)
treec50619d507c2da7cc7b7e1ad052ebc94e7e47ef8 /test/ruby
parent0641951e7bd3fa7b8032a5a1206d15cfab8fae4f (diff)
[Bug #20797] Check seconds in UTC offset as well as minutes
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/11892
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_time.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ruby/test_time.rb b/test/ruby/test_time.rb
index 99ee84f247..333edb8021 100644
--- a/test/ruby/test_time.rb
+++ b/test/ruby/test_time.rb
@@ -152,6 +152,18 @@ class TestTime < Test::Unit::TestCase
assert_raise_with_message(ArgumentError, /can't parse/) {
Time.new("2020-12-02 00:00:00 ")
}
+ assert_raise_with_message(ArgumentError, /utc_offset/) {
+ Time.new("2020-12-25 00:00:00 +0960")
+ }
+ assert_raise_with_message(ArgumentError, /utc_offset/) {
+ Time.new("2020-12-25 00:00:00 +09:60")
+ }
+ assert_raise_with_message(ArgumentError, /utc_offset/) {
+ Time.new("2020-12-25 00:00:00 +090060")
+ }
+ assert_raise_with_message(ArgumentError, /utc_offset/) {
+ Time.new("2020-12-25 00:00:00 +09:00:60")
+ }
end
def test_time_add()