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

@ -43,7 +43,7 @@ describe "IO#ungetbyte" do
end
it "... but not for Bignum argument (eh?)" do
lambda {
-> {
@io.ungetbyte(0x4f7574206f6620636861722072616e6765)
}.should raise_error(TypeError)
end
@ -52,7 +52,7 @@ describe "IO#ungetbyte" do
ruby_version_is '2.6'...'2.6.1' do
it "is an RangeError if the integer is not in 8bit" do
for i in [4095, 0x4f7574206f6620636861722072616e6765] do
lambda { @io.ungetbyte(i) }.should raise_error(RangeError)
-> { @io.ungetbyte(i) }.should raise_error(RangeError)
end
end
end
@ -68,6 +68,6 @@ describe "IO#ungetbyte" do
it "raises an IOError if the IO is closed" do
@io.close
lambda { @io.ungetbyte(42) }.should raise_error(IOError)
-> { @io.ungetbyte(42) }.should raise_error(IOError)
end
end