diff options
author | aycabta <[email protected]> | 2019-10-27 02:28:25 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2019-10-29 12:34:44 +0900 |
commit | b4da6fc1c277190bbd10e795ebf3be45772038e8 (patch) | |
tree | 00ecc642dfd07b49d266761210cb0768cd61b3ae /test/rdoc/test_rdoc_rdoc.rb | |
parent | 54eb51d72bc43f90b595f0d7ffb5069ebf1a56d9 (diff) |
[ruby/rdoc] Use omit of test-unit instead of skip of minitest
https://github.com/ruby/rdoc/commit/1c5bf2ae1d
Diffstat (limited to 'test/rdoc/test_rdoc_rdoc.rb')
-rw-r--r-- | test/rdoc/test_rdoc_rdoc.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rdoc/test_rdoc_rdoc.rb b/test/rdoc/test_rdoc_rdoc.rb index b11f255749..9471f3ef7b 100644 --- a/test/rdoc/test_rdoc_rdoc.rb +++ b/test/rdoc/test_rdoc_rdoc.rb @@ -161,7 +161,7 @@ class TestRDocRDoc < RDoc::TestCase def test_normalized_file_list_non_file_directory dev = File::NULL - skip "#{dev} is not a character special" unless + omit "#{dev} is not a character special" unless File.chardev? dev files = nil @@ -347,8 +347,8 @@ class TestRDocRDoc < RDoc::TestCase end def test_parse_file_forbidden - skip 'chmod not supported' if Gem.win_platform? - skip "assumes that euid is not root" if Process.euid == 0 + omit 'chmod not supported' if Gem.win_platform? + omit "assumes that euid is not root" if Process.euid == 0 @rdoc.store = RDoc::Store.new |