aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_module.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index edcc388c8f..db3f1fde3c 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -1452,4 +1452,17 @@ class TestModule < Test::Unit::TestCase
assert_nothing_raised(NoMethodError, Bug6891) {Class.new(x)}
assert_equal(['public', 'protected'], list)
end
+
+ def test_invalid_attr
+ %w[
+ foo?
+ @foo
+ @@foo
+ $foo
+ ].each do |name|
+ assert_raises(NameError) do
+ Module.new { attr_accessor name.to_sym }
+ end
+ end
+ end
end