diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | KNOWNBUGS.rb | 17 |
2 files changed, 21 insertions, 0 deletions
@@ -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) diff --git a/KNOWNBUGS.rb b/KNOWNBUGS.rb new file mode 100644 index 0000000000..e85a6522a1 --- /dev/null +++ b/KNOWNBUGS.rb @@ -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 |
