summaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-10 08:24:11 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-10 08:24:11 +0000
commitfa03024f577c61d1a0fc378e926453a8be754c85 (patch)
tree136740bd57ba000735d9d74696d14e0b12705e5f /test/ruby
parent2e25df66cedd76609685fd0c6ff25d3ad42f2e3a (diff)
downloadruby-fa03024f577c61d1a0fc378e926453a8be754c85.tar.gz
ruby-fa03024f577c61d1a0fc378e926453a8be754c85.tar.xz
ruby-fa03024f577c61d1a0fc378e926453a8be754c85.zip
* vm_eval.c (yield_under): yields self the same as 1.8.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_module.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index da4caa7eb..2df31d06d 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -238,7 +238,7 @@ class TestModule < Test::Unit::TestCase
end
assert("foo", Other.class_eval_test)
- assert_equal([], Other.class_eval { |*args| args })
+ assert_equal([Other], Other.class_eval { |*args| args })
end
def test_const_defined?