summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/fcntl_spec.rb
blob: 049f92c0a2846c5d9f957abcd2b002c69b88081f (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "IO#fcntl" do
  it "raises IOError on closed stream" do
    lambda { IOSpecs.closed_io.fcntl(5, 5) }.should raise_error(IOError)
  end
end