summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/fcntl_spec.rb
blob: f252d5e73890df7e45d48e87619623c5220624a5 (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