summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_module.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index 9ad2f39fa9..2847e9b5df 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -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 }