From 37eb7502dbc5dbbcdeb4f0099dd484e8de48ece1 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 29 Nov 2004 06:22:42 +0000 Subject: * test/io/nonblock/test_flush.rb: abandon tests when io/nonblock is not supported. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/io/nonblock/test_flush.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'test/io') diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb index dbe20722cf..4f56d00829 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) -- cgit v1.2.3