diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-29 06:22:42 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-29 06:22:42 +0000 |
| commit | 7e4d5acdfcef6ab407a893950504a2fcc3ce5a4e (patch) | |
| tree | 346382963f076be681117d9b9371f408946b6ab7 /test | |
| parent | e6619b4683cd9c9d690c6bd416a5c874ca2153ae (diff) | |
| download | ruby-7e4d5acdfcef6ab407a893950504a2fcc3ce5a4e.tar.gz ruby-7e4d5acdfcef6ab407a893950504a2fcc3ce5a4e.tar.xz ruby-7e4d5acdfcef6ab407a893950504a2fcc3ce5a4e.zip | |
* test/io/nonblock/test_flush.rb: abandon tests when io/nonblock is
not supported.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
| -rw-r--r-- | test/io/nonblock/test_flush.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb index dbe20722c..4f56d0082 100644 --- a/test/io/nonblock/test_flush.rb +++ b/test/io/nonblock/test_flush.rb @@ -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) |
