summaryrefslogtreecommitdiff
path: root/test/io/nonblock/test_flush.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/io/nonblock/test_flush.rb')
-rw-r--r--test/io/nonblock/test_flush.rb7
1 files changed, 5 insertions, 2 deletions
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)