From 63cd3e2b3ac4683f6a001b1a244c12e9fd651b55 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 24 Jan 2016 14:59:16 +0000 Subject: test_class.rb: test_namescope_error_message * test/ruby/test_class.rb (test_namescope_error_message): test for r53644. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_class.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') 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" -- cgit v1.2.3