summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-04 01:10:00 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-04 01:10:00 +0000
commitc604000a311e7379b487f581a53f7c950105224a (patch)
tree814ed47a1242e25cae615df328caa352c9e32c59 /test
parent8bcf81886fb198f98fd5b7433b05810fe8d0530a (diff)
dir.c: normalize cwd
* dir.c (rb_dir_getwd): normalize OS path to UTF-8 on OS X. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_dir_m17n.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ruby/test_dir_m17n.rb b/test/ruby/test_dir_m17n.rb
index f8fc1ef5e4..1d051143ae 100644
--- a/test/ruby/test_dir_m17n.rb
+++ b/test/ruby/test_dir_m17n.rb
@@ -395,4 +395,14 @@ class TestDir_M17N < Test::Unit::TestCase
pp.assert_equal(orig, ents, bug7267)
}
end
+
+ def test_pwd
+ with_tmpdir {|d|
+ orig = %W"d\u{e9}tente x\u{304c 304e 3050 3052 3054}"
+ orig.each do |n|
+ Dir.mkdir(n)
+ assert_equal(n, File.basename(Dir.chdir(n) {Dir.pwd}))
+ end
+ }
+ end
end