mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@ab32a1a
This commit is contained in:
parent
f616e81637
commit
d3d5ef0cca
74 changed files with 1201 additions and 324 deletions
|
@ -171,6 +171,10 @@ describe "StringIO#gets when passed [limit]" do
|
|||
it "returns a blank string when passed a limit of 0" do
|
||||
@io.gets(0).should == ""
|
||||
end
|
||||
|
||||
it "ignores it when passed a negative limit" do
|
||||
@io.gets(-4).should == "this>is>an>example"
|
||||
end
|
||||
end
|
||||
|
||||
describe "StringIO#gets when passed [separator] and [limit]" do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue