mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Adapt Time#zone spec to deal with differences of TZ validation on Windows
* [Bug #13591] [ruby-core:81347] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f5052d45be
commit
d404e271ae
1 changed files with 13 additions and 1 deletions
|
@ -62,7 +62,7 @@ describe "Time#zone" do
|
|||
Time.now.utc.zone.should == "UTC"
|
||||
end
|
||||
|
||||
platform_is_not :aix do
|
||||
platform_is_not :aix, :windows do
|
||||
it "defaults to UTC when bad zones given" do
|
||||
with_timezone("hello-foo") do
|
||||
Time.now.utc_offset.should == 0
|
||||
|
@ -75,4 +75,16 @@ describe "Time#zone" do
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
platform_is :windows do
|
||||
# See https://bugs.ruby-lang.org/issues/13591#note-11
|
||||
it "defaults to UTC when bad zones given" do
|
||||
with_timezone("1,2") do
|
||||
Time.now.utc_offset.should == 0
|
||||
end
|
||||
with_timezone("12") do
|
||||
Time.now.utc_offset.should == 0
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue