2007-08-29 07:48:19 +04:00
|
|
|
#
|
|
|
|
# This test file concludes tests which point out known bugs.
|
|
|
|
# So all tests will cause failure.
|
|
|
|
#
|
2009-02-15 01:04:21 +03:00
|
|
|
|
2010-02-17 15:27:34 +03:00
|
|
|
assert_normal_exit %q{
|
2010-02-16 16:25:54 +03:00
|
|
|
open("tst-remove-load.rb", "w") {|f|
|
2010-02-20 06:17:44 +03:00
|
|
|
f << <<-'End'
|
|
|
|
module Kernel
|
|
|
|
remove_method :load
|
|
|
|
end
|
|
|
|
raise
|
|
|
|
End
|
2010-02-16 16:25:54 +03:00
|
|
|
}
|
|
|
|
load "tst-remove-load.rb"
|
2010-02-17 15:27:34 +03:00
|
|
|
}, '[ruby-dev:40234] [ruby-core:27959]', :timeout => 1
|