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_ri_driver.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_ri_driver.rb')
-rw-r--r-- | test/rdoc/test_rdoc_ri_driver.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rdoc/test_rdoc_ri_driver.rb b/test/rdoc/test_rdoc_ri_driver.rb index 4965b3ddd8..6f17fecec9 100644 --- a/test/rdoc/test_rdoc_ri_driver.rb +++ b/test/rdoc/test_rdoc_ri_driver.rb @@ -1029,7 +1029,7 @@ Foo::Bar#bother end def test_did_you_mean - skip 'skip test with did_you_men' unless defined? DidYouMean::SpellChecker + omit 'skip test with did_you_men' unless defined? DidYouMean::SpellChecker util_ancestors_store @@ -1227,7 +1227,7 @@ Foo::Bar#bother with_dummy_pager do @driver.page do |io| - skip "couldn't find a standard pager" if io == $stdout + omit "couldn't find a standard pager" if io == $stdout assert @driver.paging? end @@ -1406,7 +1406,7 @@ Foo::Bar#bother pager = with_dummy_pager do @driver.setup_pager end - skip "couldn't find a standard pager" unless pager + omit "couldn't find a standard pager" unless pager assert @driver.paging? ensure |