This commit is contained in:
Benoit Daloze 2023-01-05 20:23:57 +01:00
parent 1fb0255962
commit ec14861f0d
2 changed files with 4 additions and 3 deletions

View File

@ -33,7 +33,7 @@ describe "Dir.home" do
end end
platform_is :windows do platform_is :windows do
ruby_version_is "3.0" do ruby_version_is "3.2" do
it "returns the home directory with forward slashs and as UTF-8" do it "returns the home directory with forward slashs and as UTF-8" do
ENV['HOME'] = "C:\\rubyspäc\\home" ENV['HOME'] = "C:\\rubyspäc\\home"
home = Dir.home home = Dir.home
@ -50,7 +50,8 @@ describe "Dir.home" do
ENV['HOMEPATH'] = "\\rubyspec\\home1" ENV['HOMEPATH'] = "\\rubyspec\\home1"
Dir.home.should == "C:/rubyspec/home1" Dir.home.should == "C:/rubyspec/home1"
ENV['USERPROFILE'] = "C:\\rubyspec\\home2" ENV['USERPROFILE'] = "C:\\rubyspec\\home2"
Dir.home.should == "C:/rubyspec/home2" # https://bugs.ruby-lang.org/issues/19244
# Dir.home.should == "C:/rubyspec/home2"
ENV['HOME'] = "C:\\rubyspec\\home3" ENV['HOME'] = "C:\\rubyspec\\home3"
Dir.home.should == "C:/rubyspec/home3" Dir.home.should == "C:/rubyspec/home3"
ensure ensure

View File

@ -482,7 +482,7 @@ describe "Process.spawn" do
-> do -> do
wrapped_io = mock('wrapped IO') wrapped_io = mock('wrapped IO')
wrapped_io.should_receive(:to_io).and_return(file) wrapped_io.should_receive(:to_io).and_return(file)
Process.wait Process.spawn('echo "Hello World"', out: wrapped_io) Process.wait Process.spawn('echo Hello World', out: wrapped_io)
end.should output_to_fd("Hello World\n", file) end.should output_to_fd("Hello World\n", file)
end end
end end