summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-07 11:31:23 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-07 11:31:23 +0000
commit1f642a1a5921df5b66d21dde80ce5d4c236812f1 (patch)
treee3e96758bf73bd23737dfaac7d04f2fe917ddf51 /test/ruby
parentd779fbe7eec11acefb9e5f0ab4a803f3b73f18ce (diff)
a test removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@22108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_io.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 19b4f0ebf6..6e69f14437 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -17,15 +17,4 @@ class TestIO < Test::Unit::TestCase
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