1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2019-07-27 12:40:09 +02:00
parent a06301b103
commit 5c276e1cc9
1247 changed files with 5316 additions and 5028 deletions

View file

@ -17,9 +17,9 @@ describe "Time#+" do
end
it "raises a TypeError if given argument is a coercible String" do
lambda { Time.now + "1" }.should raise_error(TypeError)
lambda { Time.now + "0.1" }.should raise_error(TypeError)
lambda { Time.now + "1/3" }.should raise_error(TypeError)
-> { Time.now + "1" }.should raise_error(TypeError)
-> { Time.now + "0.1" }.should raise_error(TypeError)
-> { Time.now + "1/3" }.should raise_error(TypeError)
end
it "increments the time by the specified amount as rational numbers" do
@ -32,8 +32,8 @@ describe "Time#+" do
end
it "raises TypeError on argument that can't be coerced into Rational" do
lambda { Time.now + Object.new }.should raise_error(TypeError)
lambda { Time.now + "stuff" }.should raise_error(TypeError)
-> { Time.now + Object.new }.should raise_error(TypeError)
-> { Time.now + "stuff" }.should raise_error(TypeError)
end
it "returns a UTC time if self is UTC" do
@ -74,11 +74,11 @@ describe "Time#+" do
end
it "raises TypeError on Time argument" do
lambda { Time.now + Time.now }.should raise_error(TypeError)
-> { Time.now + Time.now }.should raise_error(TypeError)
end
it "raises TypeError on nil argument" do
lambda { Time.now + nil }.should raise_error(TypeError)
-> { Time.now + nil }.should raise_error(TypeError)
end
#see [ruby-dev:38446]