summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/path_spec.rb
blob: 8145c32f39fa3ee48efd180c3bf68a7106282b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative '../../spec_helper'

describe "IO#path" do
  ruby_version_is "3.2" do
    it "returns the path of the file associated with the IO object" do
      path = tmp("io_path.txt")
      File.open(path, "w") do |file|
        IO.new(file.fileno, path: file.path, autoclose: false).path.should == file.path
      end
    ensure
      File.unlink(path)
    end
  end
end