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

[ruby/io-wait] Use omit instead of skip for test-unit

75543ab1bc
This commit is contained in:
Hiroshi SHIBATA 2022-01-11 21:41:25 +09:00
parent 7f5e06601b
commit bf2bd6dc22

View file

@ -13,7 +13,7 @@ class TestIOWaitUncommon < Test::Unit::TestCase
end
def test_fifo_wait
skip 'no mkfifo' unless File.respond_to?(:mkfifo) && IO.const_defined?(:NONBLOCK)
omit 'no mkfifo' unless File.respond_to?(:mkfifo) && IO.const_defined?(:NONBLOCK)
require 'tmpdir'
Dir.mktmpdir('rubytest-fifo') do |dir|
fifo = "#{dir}/fifo"