Issue #8034 has been updated by nobu (Nobuyoshi Nakada). luislavena (Luis Lavena) wrote: > After applying the patch, it fixes the original issue, however now nobu-san added another test: > > assert_nothing_raised(ArgumentError) { File.expand_path("/", UnknownUserHome) } > > Which requires more conditions if (({fname})) is '/' and set (({ignore_dir})) accordingly, but I'm confused about the scenario. Sorry, fixed the test, it shoud raise an exception on Windows, but the latest test should not. ---------------------------------------- Bug #8034: File.expand_path('something', '~') do not include home path https://bugs.ruby-lang.org/issues/8034#change-37560 Author: rap-kasta (Pavel Manylov) Status: Assigned Priority: Normal Assignee: h.shirosaki (Hiroshi Shirosaki) Category: platform/windows Target version: ruby -v: 1.9.3p362 =begin Next code works correctly only on ruby <= 1.9.3p362. Tested on Windows XP, Windows 2008 with ruby 1.9.3p194 (works properly), ruby 1.9.3p362 (bug), ruby 2.0.0p0 (bug). (({File.expand_path('something', '~') #=> "C:/path/to/current/dir/~/something"})) However, next code works as it should in all tested rubies: (({File.expand_path '~' # => "C:/Documents and Settings/Jack" Dir.home # => "C:/Documents and Settings/Jack"})) =end -- http://bugs.ruby-lang.org/