States Time.at expects rational-like argument to respond to #to_int

https://bugs.ruby-lang.org/issues/17131
This commit is contained in:
Nobuyoshi Nakada 2020-08-28 19:35:54 +09:00
Родитель 75c4e9b72e
Коммит 7e1fddba4a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -92,6 +92,12 @@ describe "Time.at" do
o.should_receive(:to_r).and_return(Rational(5, 2))
Time.at(o).should == Time.at(Rational(5, 2))
end
it "needs for the argument to respond to #to_int too" do
o = mock('rational-but-no-to_int')
o.should_receive(:to_r).and_return(Rational(5, 2))
-> { Time.at(o) }.should raise_error(TypeError)
end
end
end