summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/fcntl_spec.rb
blob: a78004d868dbc8064f392ac4e7eb06e68e568caa (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "StringIO#fcntl" do
  it "raises a NotImplementedError" do
    -> { StringIO.new("boom").fcntl }.should raise_error(NotImplementedError)
  end
end