summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/path_spec.rb
blob: 6165cf97c439aba1403d732d5779eb44114669ba (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

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