summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/to_path_spec.rb
blob: ec6dffc115b3d4fc392c3a5077a37cc6b6539016 (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

describe "IO#to_path" do
  it "is an alias of IO#path" do
    IO.instance_method(:to_path).should == IO.instance_method(:path)
  end
end