summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-14 03:38:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-14 03:38:22 +0000
commita370556cd289ee8bffaca769328c3d0de0928af2 (patch)
treecaff848a475e5a67dac91bc279ac355d33ce734d /test
parent1e4a9554358d15dd00fbb2edeb0bf80866d7b7c4 (diff)
object.c: check const names
* object.c (rb_mod_const_get, rb_mod_const_defined): check constant names more strictly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_module.rb21
1 files changed, 17 insertions, 4 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index 5b5e04b0da..4f834f0c1e 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -240,7 +240,7 @@ class TestModule < Test::Unit::TestCase
assert_not_operator(Math, :const_defined?, "IP")
end
- def test_bad_constants
+ def each_bad_constants(m, &b)
[
"#<Class:0x7b8b718b>",
":Object",
@@ -248,15 +248,28 @@ class TestModule < Test::Unit::TestCase
":",
["String::", "[Bug #7573]"],
"\u3042",
+ "Name?",
].each do |name, msg|
expected = "wrong constant name %s" % quote(name)
msg = "#{msg}#{': ' if msg}wrong constant name #{name.dump}"
- assert_raise_with_message(NameError, expected, msg) {
- Object.const_get name
- }
+ assert_raise_with_message(NameError, expected, "#{msg} to #{m}") do
+ yield name
+ end
end
end
+ def test_bad_constants_get
+ each_bad_constants("get") {|name|
+ Object.const_get name
+ }
+ end
+
+ def test_bad_constants_defined
+ each_bad_constants("defined?") {|name|
+ Object.const_defined? name
+ }
+ end
+
def test_leading_colons
assert_equal Object, AClass.const_get('::Object')
end