vm_method.c: preserve encoding

* vm_method.c (rb_attr): preserve encoding of the attribute ID in
  error message.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-10-09 09:03:07 +00:00
parent ef46e8d264
commit e70f74c3d2
3 changed files with 12 additions and 8 deletions

View file

@ -247,6 +247,7 @@ class TestModule < Test::Unit::TestCase
"",
":",
["String::", "[Bug #7573]"],
"\u{3042}",
].each do |name, msg|
expected = "wrong constant name %s" % name
msg = "#{msg}#{': ' if msg}wrong constant name #{name.dump}"
@ -1653,11 +1654,12 @@ class TestModule < Test::Unit::TestCase
end
def test_invalid_attr
%w[
%W[
foo?
@foo
@@foo
$foo
\u{3042}$
].each do |name|
assert_raise_with_message(NameError, /#{Regexp.quote(name)}/) do
Module.new { attr_accessor name.to_sym }