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

* test/io/nonblock/test_flush.rb: abandon tests when io/nonblock is

not supported.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-11-29 06:22:42 +00:00
parent 9a851dc157
commit a229d2e740
2 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Mon Nov 29 15:22:28 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/io/nonblock/test_flush.rb: abandon tests when io/nonblock is
not supported.
Mon Nov 29 03:08:30 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* object.c (convert_type): [ruby-core:03845]
@ -42,7 +47,7 @@ Sat Nov 27 21:43:39 2004 Tanaka Akira <akr@m17n.org>
(rb_io_fwrite): wrapper for io_fwrite now.
(io_write): call io_fwrite instead of rb_io_fwrite.
Sat Nov 27 14:44:15 2004 Kent Sibilev <ksibilev@bellsouth.net>
Sat Nov 27 14:44:15 2004 Kent Sibilev <ksibilev@bellsouth.net>
* lib/cgi/session.rb (CGI::Session::initialize): [ruby-core:03832]

View file

@ -1,5 +1,8 @@
require 'test/unit'
require 'io/nonblock'
begin
require 'io/nonblock'
rescue LoadError
end
class TestIONonblock < Test::Unit::TestCase
def test_flush # [ruby-dev:24985]
@ -23,4 +26,4 @@ class TestIONonblock < Test::Unit::TestCase
t.join
assert_equal("b", result)
end
end
end if IO.method_defined?(:nonblock)