aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-23 02:26:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-23 02:26:45 +0000
commite3897c538c27cf6c302972ee47f034ce909f0f45 (patch)
treee0fb799a66e02e61efd9e384a4b61aba16d210bc /bootstraptest
parent64bc558cc5fe5f19ff47ce0715e3ddd557206eac (diff)
downloadruby-e3897c538c27cf6c302972ee47f034ce909f0f45.tar.gz
* string.c (sym_call): use exact argument array interface.
[ruby-core:14279] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_block.rb10
-rw-r--r--bootstraptest/test_knownbug.rb7
2 files changed, 10 insertions, 7 deletions
diff --git a/bootstraptest/test_block.rb b/bootstraptest/test_block.rb
index f139c21d15..3ece21756d 100644
--- a/bootstraptest/test_block.rb
+++ b/bootstraptest/test_block.rb
@@ -497,3 +497,13 @@ assert_equal 'ok', %q{
result
end
}
+
+assert_equal "ok", %q{
+ class Bar
+ def bar; :ok; end
+ end
+ def foo
+ yield(Bar.new) if block_given?
+ end
+ foo(&:bar)
+}, '[ruby-core:14279]'
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 74981190d8..b251734cae 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -3,13 +3,6 @@
# So all tests will cause failure.
#
-assert_normal_exit %q{
- def foo(&block)
- yield if block
- end
- foo(&:bar)
-}, '[ruby-core:14279]'
-
assert_equal 'ok', %q{
open("tmp", "w") {|f| f.write "a\u00FFb" }
s = open("tmp", "r:iso-8859-1:utf-8") {|f|