From 885191142eb75095d68bcda5cc169ac8adbf687c Mon Sep 17 00:00:00 2001 From: usa Date: Sun, 27 Dec 2015 12:24:03 +0000 Subject: * test/ruby/test_process.rb (TestProcess#test_execopts_open_chdir_m17n_path): test for r53346, r53347 and r53348. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index ca35d151a9..c8b4b7d343 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -425,6 +425,16 @@ class TestProcess < Test::Unit::TestCase } end + def test_execopts_open_chdir_m17n_path + with_tmpchdir {|d| + Dir.mkdir "テスト" + system(*PWD, :chdir => "テスト", :out => "open_chdir_テスト") + assert_file.exist?("open_chdir_テスト") + assert_file.not_exist?("テスト/open_chdir_テスト") + assert_equal("#{d}/テスト", File.read("open_chdir_テスト").chomp.encode(__ENCODING__)) + } + end + def test_execopts_open_failure with_tmpchdir {|d| assert_raise_with_message(Errno::ENOENT, %r"d/notexist") { -- cgit v1.2.3