aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/io/fcntl_spec.rb
blob: 0e20f50f60e9cf845d7d57c47d2ba68087dd48ed (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

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