summaryrefslogtreecommitdiff
path: root/KNOWNBUGS.rb
diff options
context:
space:
mode:
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 54ae030f66..7f6fa9274a 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