2017-05-07 12:04:49 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
|
|
|
require_relative 'shared/chars'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-12-04 16:32:14 +01:00
|
|
|
ruby_version_is ''...'3.0' do
|
2020-07-27 11:15:50 +09:00
|
|
|
describe "IO#chars" do
|
2020-12-27 17:35:32 +01:00
|
|
|
before :each do
|
|
|
|
@verbose, $VERBOSE = $VERBOSE, nil
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
$VERBOSE = @verbose
|
|
|
|
end
|
|
|
|
|
2020-07-27 11:15:50 +09:00
|
|
|
it_behaves_like :io_chars, :chars
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2020-07-27 11:15:50 +09:00
|
|
|
describe "IO#chars" do
|
2020-12-27 17:35:32 +01:00
|
|
|
before :each do
|
|
|
|
@verbose, $VERBOSE = $VERBOSE, nil
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
$VERBOSE = @verbose
|
|
|
|
end
|
|
|
|
|
2020-07-27 11:15:50 +09:00
|
|
|
it_behaves_like :io_chars_empty, :chars
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|