1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* KNOWNBUGS.rb: New file to address known bugs.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@17354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2008-06-16 02:49:47 +00:00
parent a7d78dad9f
commit 36784e381c
2 changed files with 21 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Mon Jun 16 11:48:47 2008 Akinori MUSHA <knu@iDaemons.org>
* KNOWNBUGS.rb: New file to address known bugs.
Mon Jun 16 07:14:48 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/stringio/stringio.c (strio_readline, strio_each)

17
KNOWNBUGS.rb Normal file
View file

@ -0,0 +1,17 @@
#
# This is a list of known bugs.
#
require 'test/unit'
class TC_KnownBugs < Test::Unit::TestCase
def just_yield()
yield
end
def test_block_arg1
just_yield {|&b|
assert_equal(nil, b)
}
end
end