aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_exception.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-04 09:51:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-04 09:51:27 +0000
commite8249be9fca2ebfc101f7fc3d14ee935391cd797 (patch)
treebe9d81ffc6cbc86258090c94412100e3d2dc50ed /test/ruby/test_exception.rb
parent16c40ec1a5258250876b3b95a299397a79244a10 (diff)
downloadruby-e8249be9fca2ebfc101f7fc3d14ee935391cd797.tar.gz
* error.c (name_err_mesg_to_str): preserve encoding of inspection.
[ruby-core:29948] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27615 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_exception.rb')
-rw-r--r--test/ruby/test_exception.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb
index d7833b9d44..18ecb404be 100644
--- a/test/ruby/test_exception.rb
+++ b/test/ruby/test_exception.rb
@@ -304,4 +304,12 @@ end.join
end
assert(!e.success?)
end
+
+ def test_nomethoderror
+ bug3237 = '[ruby-core:29948]'
+ str = "\u2600"
+ id = :"\u2604"
+ e = assert_raise(NoMethodError) {str.__send__(id)}
+ assert_equal("undefined method `#{id}' for #{str.inspect}:String", e.message, bug3237)
+ end
end