* bootstraptest/test_knownbug.rb, test_literal.rb: move fixed test.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14637 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-12-24 21:26:02 +00:00
parent a560576158
commit 7ad94af99b
3 changed files with 12 additions and 6 deletions

View File

@ -1,3 +1,7 @@
Tue Dec 25 06:23:40 2007 Koichi Sasada <ko1@atdot.net>
* bootstraptest/test_knownbug.rb, test_literal.rb: move fixed test.
Tue Dec 25 06:19:04 2007 GOTOU Yuuzou <gotoyuzo@notwork.org>
* sample/biorhythm.rb: follow Ruby 1.9 libraries.

View File

@ -2,9 +2,3 @@
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#
assert_equal 'ok', %q{
# this cause "called on terminated object".
ObjectSpace.each_object(Module) {|m| m.name.inspect }
:ok
}

View File

@ -168,3 +168,11 @@ assert_equal 'c', 'r = ("a".."c"); r.end'
assert_equal 'String', '__FILE__.class'
assert_equal 'Fixnum', '__LINE__.class'
###
assert_equal 'ok', %q{
# this cause "called on terminated object".
ObjectSpace.each_object(Module) {|m| m.name.inspect }
:ok
}