summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-08 13:35:12 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-08 13:35:12 +0000
commitbdb8607cb7549f8555fed781392231ead86d984b (patch)
treedc4892223043d006fff5b6bf53d9a426d4fa3f60 /test
parent537030e19b98cb99d161eff292a33fbdeea19a93 (diff)
* eval.c (top_using): raise a RuntimeError if using is called in a
module definition or a method definition. * test/ruby/test_refinement.rb: related test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_refinement.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/ruby/test_refinement.rb b/test/ruby/test_refinement.rb
index 0d934d737e..016aa15f19 100644
--- a/test/ruby/test_refinement.rb
+++ b/test/ruby/test_refinement.rb
@@ -624,6 +624,33 @@ class TestRefinement < Test::Unit::TestCase
end
end
+ def test_using_in_module
+ assert_raise(RuntimeError) do
+ eval(<<-EOF, TOPLEVEL_BINDING)
+ $main = self
+ module M
+ end
+ module M2
+ $main.send(:using, M)
+ end
+ EOF
+ end
+ end
+
+ def test_using_in_method
+ assert_raise(RuntimeError) do
+ eval(<<-EOF, TOPLEVEL_BINDING)
+ $main = self
+ module M
+ end
+ def call_using_in_method
+ $main.send(:using, M)
+ end
+ call_using_in_method
+ EOF
+ end
+ end
+
private
def eval_using(mod, s)