summaryrefslogtreecommitdiffstats
path: root/KNOWNBUGS.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-15 16:50:37 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-15 16:50:37 +0000
commitffa3b760d1bc2871303fea95b876fda33c138b61 (patch)
tree578f369c8e2ef0410de361389f22ef0beb033f76 /KNOWNBUGS.rb
parentba5e485a7bb42350a9481cd0fbb3816c4eebf4ca (diff)
downloadruby-ffa3b760d1bc2871303fea95b876fda33c138b61.tar.gz
ruby-ffa3b760d1bc2871303fea95b876fda33c138b61.tar.xz
ruby-ffa3b760d1bc2871303fea95b876fda33c138b61.zip
* eval.c (rb_f_block_given_p): fix to skip class frame.
[ruby-core:14813] * KNOWNBUGS.rb, bootstraptest/test_method.rb: move solved test. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'KNOWNBUGS.rb')
-rw-r--r--KNOWNBUGS.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/KNOWNBUGS.rb b/KNOWNBUGS.rb
index 54ae030f6..7f6fa9274 100644
--- a/KNOWNBUGS.rb
+++ b/KNOWNBUGS.rb
@@ -3,32 +3,6 @@
# So all tests will cause failure.
#
-assert_equal 'ok', %q{
- class C
- define_method(:foo) {
- if block_given?
- :ng
- else
- :ok
- end
- }
- end
- C.new.foo {}
-}, '[ruby-core:14813]'
-
-assert_equal 'ok', %q{
- class C
- define_method(:foo) {
- if block_given?
- :ng
- else
- :ok
- end
- }
- end
- C.new.foo
-}, '[ruby-core:14813]'
-
assert_equal %q{[:bar, :foo]}, %q{
def foo
klass = Class.new do