From ad67adb5f942d463ab378fea21cc21cb15466cbc Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 3 Oct 2019 14:47:18 +0900 Subject: [ruby/fileutils] Use pend instead of skip https://github.com/ruby/fileutils/commit/ba2c24e2d7 --- test/fileutils/test_fileutils.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb index 23f05d2b44..1be44349f6 100644 --- a/test/fileutils/test_fileutils.rb +++ b/test/fileutils/test_fileutils.rb @@ -462,7 +462,7 @@ class TestFileUtils < Test::Unit::TestCase rescue LoadError else def test_cp_r_socket - skip "Skipping socket test on JRuby" if RUBY_ENGINE == 'jruby' + pend "Skipping socket test on JRuby" if RUBY_ENGINE == 'jruby' Dir.mkdir('tmp/cpr_src') UNIXServer.new('tmp/cpr_src/socket').close cp_r 'tmp/cpr_src', 'tmp/cpr_dest' @@ -1052,7 +1052,7 @@ class TestFileUtils < Test::Unit::TestCase else tmpdir = Dir.pwd end - skip "No drive letter" unless /\A[a-z]:/i =~ tmpdir + pend "No drive letter" unless /\A[a-z]:/i =~ tmpdir drive = "./#{$&}" assert_file_not_exist drive mkdir_p "#{tmpdir}/none/dir" -- cgit v1.2.3