summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/closed_read_spec.rb
blob: cb4267ac9873c97dd7d453b2826412708253aa43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "StringIO#closed_read?" do
  it "returns true if self is not readable" do
    io = StringIO.new("example", "r+")
    io.close_write
    io.closed_read?.should be_false
    io.close_read
    io.closed_read?.should be_true
  end
end