From 40107b59b3d0eb565fba21ca8d902581fc22299c Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 11 Jan 2022 21:36:31 +0900 Subject: [PATCH] Use omit instead of skip for test-unit --- test/test_tmpdir.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_tmpdir.rb b/test/test_tmpdir.rb index 7ef9f59..0be2176 100644 --- a/test/test_tmpdir.rb +++ b/test/test_tmpdir.rb @@ -12,7 +12,7 @@ def test_tmpdir_modifiable end def test_world_writable - skip "no meaning on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM + omit "no meaning on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM Dir.mktmpdir do |tmpdir| # ToDo: fix for parallel test envs = %w[TMPDIR TMP TEMP]