2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "IO#<<" do
|
|
|
|
it "writes an object to the IO stream" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> {
|
2017-05-07 12:04:49 +00:00
|
|
|
$stderr << "Oh noes, an error!"
|
|
|
|
}.should output_to_fd("Oh noes, an error!", $stderr)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "calls #to_s on the object to print it" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> {
|
2017-06-29 14:35:37 +00:00
|
|
|
$stderr << 1337
|
2017-05-07 12:04:49 +00:00
|
|
|
}.should output_to_fd("1337", $stderr)
|
2017-06-29 14:35:37 +00:00
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
it "raises an error if the stream is closed" do
|
|
|
|
io = IOSpecs.closed_io
|
2019-07-27 12:40:09 +02:00
|
|
|
-> { io << "test" }.should raise_error(IOError)
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns self" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> {
|
2017-05-07 12:04:49 +00:00
|
|
|
($stderr << "to_stderr").should == $stderr
|
|
|
|
}.should output(nil, "to_stderr")
|
|
|
|
end
|
|
|
|
end
|