From d2da9597c3b9f2dded80f53c16f4bf2c630e0ffe Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 29 Aug 2010 14:25:23 +0000 Subject: * file.c (rb_get_path_check): clarify error message for ASCII-incompatible path name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_path.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/ruby/test_path.rb') diff --git a/test/ruby/test_path.rb b/test/ruby/test_path.rb index 31c1885371..74d568ae49 100644 --- a/test/ruby/test_path.rb +++ b/test/ruby/test_path.rb @@ -239,4 +239,12 @@ class TestPath < Test::Unit::TestCase assert_equal('', File.extname('.x')) assert_equal('', File.extname('..x')) end + + def test_ascii_incompatible_path + s = "\u{221e}\u{2603}" + assert_raise(Encoding::CompatibilityError) {open(s.encode("utf-16be"))} + assert_raise(Encoding::CompatibilityError) {open(s.encode("utf-16le"))} + assert_raise(Encoding::CompatibilityError) {open(s.encode("utf-32be"))} + assert_raise(Encoding::CompatibilityError) {open(s.encode("utf-32le"))} + end end -- cgit v1.2.3