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

assert_normal_exit %q{
  open("tst-remove-load.rb", "w") {|f|
    f << <<'End'
module Kernel
  remove_method :load
end
raise
End
  }
  load "tst-remove-load.rb"
}, '[ruby-dev:40234] [ruby-core:27959]'