summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_class.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_class.rb b/test/ruby/test_class.rb
index 81c11e6f88..4f4091d299 100644
--- a/test/ruby/test_class.rb
+++ b/test/ruby/test_class.rb
@@ -537,6 +537,14 @@ class TestClass < Test::Unit::TestCase
}
end
+ def test_namescope_error_message
+ m = Module.new
+ o = m.module_eval "class A\u{3042}; self; end.new"
+ assert_raise_with_message(TypeError, /A\u{3042}/) {
+ o::Foo
+ }
+ end
+
def test_redefinition_mismatch
m = Module.new
m.module_eval "A = 1"