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

describe "StringIO#path" do
  it "is not defined" do
    -> { StringIO.new("path").path }.should raise_error(NoMethodError)
  end
end