git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2017-12-27 21:18:20 +00:00
Родитель a34db218ad
Коммит 74f14d6921
1 изменённых файлов: 26 добавлений и 11 удалений

Просмотреть файл

@ -27,8 +27,12 @@ describe :time_gm, shared: true do
time.nsec.should == 999
end
platform_is :linux do
it "handles real leap seconds" do
guard -> {
with_timezone 'right/UTC' do
(Time.gm(1972, 6, 30, 23, 59, 59) + 1).sec == 60
end
} do
it "handles real leap seconds in zone 'right/UTC'" do
with_timezone 'right/UTC' do
time = Time.send(@method, 1972, 6, 30, 23, 59, 60)
@ -39,17 +43,28 @@ describe :time_gm, shared: true do
time.month.should == 6
end
end
end
it "handles bad leap seconds by carrying values forward" do
with_timezone 'UTC' do
time = Time.send(@method, 1972, 6, 30, 23, 59, 60)
it "handles bad leap seconds by carrying values forward" do
with_timezone 'UTC' do
time = Time.send(@method, 2017, 7, 5, 23, 59, 60)
time.sec.should == 0
time.min.should == 0
time.hour.should == 0
time.day.should == 6
time.month.should == 7
end
end
time.sec.should == 0
time.min.should == 0
time.hour.should == 0
time.day.should == 1
time.month.should == 7
end
it "handles a value of 60 for seconds by carrying values forward in zone 'UTC'" do
with_timezone 'UTC' do
time = Time.send(@method, 1972, 6, 30, 23, 59, 60)
time.sec.should == 0
time.min.should == 0
time.hour.should == 0
time.day.should == 1
time.month.should == 7
end
end
end