1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/stringio/bytes_spec.rb

30 lines
585 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
require 'stringio'
require_relative 'shared/each_byte'
2020-12-04 10:32:14 -05:00
ruby_version_is ''...'3.0' do
describe "StringIO#bytes" do
2020-12-27 11:35:32 -05:00
before :each do
@verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
$VERBOSE = @verbose
end
it_behaves_like :stringio_each_byte, :bytes
end
describe "StringIO#bytes when self is not readable" do
2020-12-27 11:35:32 -05:00
before :each do
@verbose, $VERBOSE = $VERBOSE, nil
end
after :each do
$VERBOSE = @verbose
end
it_behaves_like :stringio_each_byte_not_readable, :bytes
end
end