From d34c4786345a94c311aef998416858ff4abdf29c Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 1 Jul 2014 17:14:19 +0000 Subject: test_proc.rb: test_local_variables_in_other_context * test/ruby/test_proc.rb (test_local_variables_in_other_context): move from test_variable.rb, this is a test for the method of Binding, not of Kernel. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_proc.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/ruby/test_proc.rb') diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb index 284b518121..61f8d3b635 100644 --- a/test/ruby/test_proc.rb +++ b/test/ruby/test_proc.rb @@ -1251,6 +1251,16 @@ class TestProc < Test::Unit::TestCase binding end + def local_variables_of(bind) + this_should_not_be_in_bind = 2 + bind.local_variables + end + + def test_local_variables_in_other_context + feature8773 = '[Feature #8773]' + assert_equal([:feature8773], local_variables_of(binding), feature8773) + end + def test_local_variable_get b = get_binding assert_equal(0, b.local_variable_get(:a)) -- cgit v1.2.3