1
0
Fork 0
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:
eregon 2017-06-19 13:00:12 +00:00
parent f5052d45be
commit d404e271ae

View file

@ -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