mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
Update to ruby/spec@b95d7ed
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a34db218ad
commit
74f14d6921
1 changed files with 26 additions and 11 deletions
|
@ -27,8 +27,12 @@ describe :time_gm, shared: true do
|
||||||
time.nsec.should == 999
|
time.nsec.should == 999
|
||||||
end
|
end
|
||||||
|
|
||||||
platform_is :linux do
|
guard -> {
|
||||||
it "handles real leap seconds" do
|
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
|
with_timezone 'right/UTC' do
|
||||||
time = Time.send(@method, 1972, 6, 30, 23, 59, 60)
|
time = Time.send(@method, 1972, 6, 30, 23, 59, 60)
|
||||||
|
|
||||||
|
@ -39,8 +43,20 @@ describe :time_gm, shared: true do
|
||||||
time.month.should == 6
|
time.month.should == 6
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
it "handles bad leap seconds by carrying values forward" do
|
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
|
||||||
|
|
||||||
|
it "handles a value of 60 for seconds by carrying values forward in zone 'UTC'" do
|
||||||
with_timezone 'UTC' do
|
with_timezone 'UTC' do
|
||||||
time = Time.send(@method, 1972, 6, 30, 23, 59, 60)
|
time = Time.send(@method, 1972, 6, 30, 23, 59, 60)
|
||||||
|
|
||||||
|
@ -51,5 +67,4 @@ describe :time_gm, shared: true do
|
||||||
time.month.should == 7
|
time.month.should == 7
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue