diff options
author | Hiroshi SHIBATA <[email protected]> | 2019-08-11 12:50:54 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2019-08-16 06:07:11 +0900 |
commit | daf5ce3ba1545e295ba2efd0ee153638ae446e6e (patch) | |
tree | 794774d3f0616f85cd24537d98dc17ebde70027b /test/rdoc/test_rdoc_ri_driver.rb | |
parent | e87e10e5e7b7bbb6f4e703981a75b9aaae588816 (diff) |
Use omit instead of skip for test-unit.
Diffstat (limited to 'test/rdoc/test_rdoc_ri_driver.rb')
-rw-r--r-- | test/rdoc/test_rdoc_ri_driver.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/rdoc/test_rdoc_ri_driver.rb b/test/rdoc/test_rdoc_ri_driver.rb index 748ddaec31..9bb87b28d1 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 'omit 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 @@ -1239,7 +1239,7 @@ Foo::Bar#bother # this test is too fragile. Perhaps using Process.spawn will make this # reliable def _test_page_in_presence_of_child_status - skip 'this test hangs on travis-ci.org' if ENV['CI'] + omit 'this test hangs on travis-ci.org' if ENV['CI'] @driver.use_stdout = false with_dummy_pager do @@ -1407,7 +1407,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 |