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

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

https://github.com/ruby/find/commit/0ebbd5b852
This commit is contained in:
Hiroshi SHIBATA 2022-01-11 21:27:59 +09:00 committed by git
parent 6b87d98011
commit 167121a9e7

View file

@ -60,7 +60,7 @@ class TestFind < Test::Unit::TestCase
begin
File.symlink("#{d}/b", "#{d}/c")
rescue NotImplementedError, Errno::EACCES
skip "symlink is not supported."
omit "symlink is not supported."
end
a = []
Find.find(d) {|f| a << f }
@ -103,8 +103,8 @@ class TestFind < Test::Unit::TestCase
end
def test_unreadable_dir
skip "no meaning test on Windows" if /mswin|mingw/ =~ RUBY_PLATFORM
skip "because root can read anything" if Process.uid == 0
omit "no meaning test on Windows" if /mswin|mingw/ =~ RUBY_PLATFORM
omit "because root can read anything" if Process.uid == 0
Dir.mktmpdir {|d|
Dir.mkdir(dir = "#{d}/dir")
@ -158,8 +158,8 @@ class TestFind < Test::Unit::TestCase
Find.find(d, ignore_error: true).each {|f| a << f }
assert_equal([d, dir, file], a)
skip "no meaning test on Windows" if /mswin|mingw/ =~ RUBY_PLATFORM
skip "skipped because root can read anything" if Process.uid == 0
omit "no meaning test on Windows" if /mswin|mingw/ =~ RUBY_PLATFORM
omit "skipped because root can read anything" if Process.uid == 0
a = []
assert_raise_with_message(Errno::EACCES, /#{Regexp.quote(file)}/) do
@ -185,7 +185,7 @@ class TestFind < Test::Unit::TestCase
begin
File.symlink("foo", "#{d}/bar")
rescue NotImplementedError, Errno::EACCES
skip "symlink is not supported."
omit "symlink is not supported."
end
a = []
Find.find(d) {|f| a << f }
@ -199,7 +199,7 @@ class TestFind < Test::Unit::TestCase
begin
File.symlink("foo", "#{d}/bar")
rescue NotImplementedError, Errno::EACCES
skip "symlink is not supported."
omit "symlink is not supported."
end
assert_raise(Errno::ENOENT) {
Find.find(d) {|f| File.stat(f) }
@ -245,7 +245,7 @@ class TestFind < Test::Unit::TestCase
begin
File.symlink("d1", dir_1)
rescue NotImplementedError, Errno::EACCES
skip "symlink is not supported."
omit "symlink is not supported."
end
end
}