summaryrefslogtreecommitdiff
path: root/test/test_tmpdir.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-01-11 21:36:31 +0900
committergit <svn-admin@ruby-lang.org>2022-01-11 21:50:53 +0900
commit34ebf82e839bf542444a92e075853ff8f6332156 (patch)
tree63356084ced253570ec1e5f2909ff289765538c6 /test/test_tmpdir.rb
parent9b3dcf193c8a39b1316f0f2c6d9da5998a830663 (diff)
downloadruby-34ebf82e839bf542444a92e075853ff8f6332156.tar.gz
[ruby/tmpdir] Use omit instead of skip for test-unit
https://github.com/ruby/tmpdir/commit/40107b59b3
Diffstat (limited to 'test/test_tmpdir.rb')
-rw-r--r--test/test_tmpdir.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_tmpdir.rb b/test/test_tmpdir.rb
index 7ef9f59b54..0be2176bd9 100644
--- a/test/test_tmpdir.rb
+++ b/test/test_tmpdir.rb
@@ -12,7 +12,7 @@ class TestTmpdir < Test::Unit::TestCase
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]