summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/putc_spec.rb
blob: 73473ad821ccbd0f0debb318a3dcfd7b47da1acf (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'
require_relative '../../shared/io/putc'

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