aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/io/putc_spec.rb
blob: 9803d0c1a1d3de5edfa8eb4549be9952ef0f67cc (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../../../shared/io/putc', __FILE__)

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