ruby-changes:10553
From: akr <ko1@a...>
Date: Sat, 7 Feb 2009 20:31:28 +0900 (JST)
Subject: [ruby-changes:10553] Ruby:r22108 (ruby_1_8): a test removed.
akr 2009-02-07 20:31:23 +0900 (Sat, 07 Feb 2009) New Revision: 22108 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=22108 Log: a test removed. Modified files: branches/ruby_1_8/test/ruby/test_io.rb Index: ruby_1_8/test/ruby/test_io.rb =================================================================== --- ruby_1_8/test/ruby/test_io.rb (revision 22107) +++ ruby_1_8/test/ruby/test_io.rb (revision 22108) @@ -17,15 +17,4 @@ assert_equal("\377", r.gets("\377"), "[ruby-dev:24460]") r.close end - - def test_readpartial_pos - mkcdtmpdir { - open("foo", "w") {|f| f << "abc" } - open("foo") {|f| - f.seek(0) - assert_equal("ab", f.readpartial(2)) - assert_equal(2, f.pos) - } - } - end end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/