summaryrefslogtreecommitdiff
path: root/KNOWNBUGS.rb
blob: a1b426a6d47cefb9657ecdc67c93661b6610553c (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_finish 1, %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]'