2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative '../../shared/io/putc'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "IO#putc" do
|
|
|
|
before :each do
|
|
|
|
@name = tmp("io_putc.txt")
|
|
|
|
@io_object = @io = new_io(@name)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like :io_putc, :putc
|
|
|
|
end
|