[ruby/tempfile] File.new(fileno, mode: mode, path: path) is provided from Ruby 3.2

https://github.com/ruby/tempfile/commit/67ce897727
This commit is contained in:
Hiroshi SHIBATA 2024-08-23 14:58:47 +09:00 committed by git
parent 52082d19e0
commit 7812732e2c
2 changed files with 11 additions and 3 deletions

View File

@ -556,7 +556,7 @@ end
# Related: Tempfile.new.
#
def Tempfile.create(basename="", tmpdir=nil, mode: 0, anonymous: false, **options, &block)
if anonymous
if anonymous && RUBY_VERSION >= '3.2'
create_anonymous(basename, tmpdir, mode: mode, **options, &block)
else
create_with_filename(basename, tmpdir, mode: mode, **options, &block)

View File

@ -488,7 +488,11 @@ puts Tempfile.new('foo').path
Dir.mktmpdir {|d|
t = Tempfile.create("", d, anonymous: true)
t.close
assert_equal([], Dir.children(d))
if RUBY_VERSION >= '3.2'
assert_equal([], Dir.children(d))
else
refute_equal([], Dir.children(d))
end
}
end
@ -496,7 +500,11 @@ puts Tempfile.new('foo').path
Dir.mktmpdir {|d|
begin
t = Tempfile.create("", d, anonymous: true)
assert_equal(File.join(d, ""), t.path)
if RUBY_VERSION >= '3.2'
assert_equal(File.join(d, ""), t.path)
else
refute_equal(File.join(d, ""), t.path)
end
ensure
t.close if t
end