summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/fcntl_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/io/fcntl_spec.rb')
-rw-r--r--spec/ruby/core/io/fcntl_spec.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/ruby/core/io/fcntl_spec.rb b/spec/ruby/core/io/fcntl_spec.rb
new file mode 100644
index 0000000000..be6d06c672
--- /dev/null
+++ b/spec/ruby/core/io/fcntl_spec.rb
@@ -0,0 +1,8 @@
+require_relative '../../spec_helper'
+require_relative 'fixtures/classes'
+
+describe "IO#fcntl" do
+ it "raises IOError on closed stream" do
+ -> { IOSpecs.closed_io.fcntl(5, 5) }.should.raise(IOError)
+ end
+end