Closed
Description
It seems CRuby has a fallback in the case HOME
is unset:
$ unset HOME
$ ruby -e 'p Dir.home'
"/home/eregon"
$ HOME=/home ruby -e 'p Dir.home'
"/home"
Found in SeleniumHQ/selenium#11251 (comment)
Related: jruby/jruby#5661