diff options
Diffstat (limited to 'spec/ruby/library/stringio/lines_spec.rb')
-rw-r--r-- | spec/ruby/library/stringio/lines_spec.rb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/ruby/library/stringio/lines_spec.rb b/spec/ruby/library/stringio/lines_spec.rb index 4a2aeac37e..42d11772ae 100644 --- a/spec/ruby/library/stringio/lines_spec.rb +++ b/spec/ruby/library/stringio/lines_spec.rb @@ -4,18 +4,50 @@ require_relative 'shared/each' ruby_version_is ''...'3.0' do describe "StringIO#lines when passed a separator" do + before :each do + @verbose, $VERBOSE = $VERBOSE, nil + end + + after :each do + $VERBOSE = @verbose + end + it_behaves_like :stringio_each_separator, :lines end describe "StringIO#lines when passed no arguments" do + before :each do + @verbose, $VERBOSE = $VERBOSE, nil + end + + after :each do + $VERBOSE = @verbose + end + it_behaves_like :stringio_each_no_arguments, :lines end describe "StringIO#lines when self is not readable" do + before :each do + @verbose, $VERBOSE = $VERBOSE, nil + end + + after :each do + $VERBOSE = @verbose + end + it_behaves_like :stringio_each_not_readable, :lines end describe "StringIO#lines when passed chomp" do + before :each do + @verbose, $VERBOSE = $VERBOSE, nil + end + + after :each do + $VERBOSE = @verbose + end + it_behaves_like :stringio_each_chomp, :lines end end |