[Bug #18946] Use Gregorian dates to test

This commit is contained in:
Nobuyoshi Nakada 2022-08-08 23:08:29 +09:00
Родитель a24c607e30
Коммит e0dfa5967e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -7,10 +7,10 @@ describe "DateTime#to_time" do
end
it "returns a Time representing the same instant" do
datetime = DateTime.civil(3, 12, 31, 23, 58, 59)
datetime = DateTime.civil(2012, 12, 31, 23, 58, 59)
time = datetime.to_time.utc
time.year.should == 3
time.year.should == 2012
time.month.should == 12
time.day.should == 31
time.hour.should == 23

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

@ -3,9 +3,9 @@ require 'time'
describe "Time#to_datetime" do
it "returns a DateTime representing the same instant" do
time = Time.utc(3, 12, 31, 23, 58, 59)
time = Time.utc(2012, 12, 31, 23, 58, 59)
datetime = time.to_datetime
datetime.year.should == 3
datetime.year.should == 2012
datetime.month.should == 12
datetime.day.should == 31
datetime.hour.should == 23