summaryrefslogtreecommitdiff
path: root/KNOWNBUGS.rb
blob: 7f6fa9274a3b7ae1bcdf9036c6991ce70ee84b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#

assert_equal %q{[:bar, :foo]}, %q{
  def foo
    klass = Class.new do
      define_method(:bar) do
        return :bar
      end
    end
    [klass.new.bar, :foo]
  end
  foo
}, "[ ruby-Bugs-19304 ]"