From 77cf13a588be5bab7efa44eccf097ca579a41ae4 Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 4 Mar 2014 14:00:48 +0000 Subject: * test/ruby/test_eval.rb (TestEval#make_test_binding): renamed. it's not test method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45268 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_eval.rb | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 03c88eb3ce..82c9846021 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Mar 4 23:00:18 2014 NAKAMURA Usaku + + * test/ruby/test_eval.rb (TestEval#make_test_binding): renamed. + it's not test method. + Tue Mar 4 20:50:59 2014 Masaya Tarui * st.c (st_foreach): fix type of hash. not st_data_t but st_index_t. diff --git a/test/ruby/test_eval.rb b/test/ruby/test_eval.rb index 2700aa33f3..c05adc08e3 100644 --- a/test/ruby/test_eval.rb +++ b/test/ruby/test_eval.rb @@ -238,7 +238,7 @@ class TestEval < Test::Unit::TestCase # From ruby/test/ruby/test_eval.rb # - def test_ev + def make_test_binding local1 = "local1" lambda { local2 = "local2" @@ -273,7 +273,7 @@ class TestEval < Test::Unit::TestCase assert_equal(5, eval("i")) assert(eval("defined? i")) - x = test_ev + x = make_test_binding assert_equal("local1", eval("local1", x)) # normal local var assert_equal("local2", eval("local2", x)) # nested local var bad = true -- cgit v1.2.3